<html>
<head>
<style>
#myDIV {
background-color: lightblue;
border: solid black 1px;
min-inline-size: 260px;
writing-mode: vertical-rl;
}
</style>
</head>
<body>
<h1>The min-inline-size Property</h1>
<p>Here, the min-inline-size property is affected by the CSS writing-mode property.</p>
<div id="myDIV">
<p>This is a DIV element.</p>
</div>
</body>
</html>