x
 
<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {
  background-color: lightblue;
  border: solid black 1px;
  block-size: 50%;
  max-inline-size: 60px;
  writing-mode: vertical-rl;
}
</style>
</head>
<body>
<h1>max-inline-size 属性</h1>
<p>在这里,max-inline-size 属性受 CSS 的 writing-mode 属性影响。</p>
<div id="myDIV">
  <p>This is a DIV element.</p>
</div>
</body>
</html>