x
 
<!DOCTYPE html>
<html>
<head>
<style> 
div {
  background-color: lightgreen; /* 背景颜色为浅绿色 */
  inline-size: 300px; /* 行内方向宽度为 300 像素 */
  padding: 10px; /* 内边距为 10 像素 */
  border-block-width: 5px; /* 块方向边框宽度为 5 像素 */
  writing-mode: vertical-rl; /* 书写模式为从右到左的垂直方向 */
  border-block-style: solid; /* 块方向边框样式为实线 */
}
</style>
</head>
<body>
 
<h2>border-block-style: dotted:</h2>
<div>
  <p>当 writing-mode 属性值设置为 'vertical-rl' 时,受 border-block-style 属性影响的边框位于左侧和右侧。</p>
</div>
 
</body>
</html>