<html>
<head>
<style>
.bluediv {
background-color:lightblue;
max-inline-size: 50px;
display: inline-block;
}
</style>
</head>
<body>
<h1>The max-inline-size Property</h1>
<div class="bluediv">
See this blue div element with different max-inline-size values.
</div>
</body>
</html>