x
 
<!DOCTYPE html>
<html>
<head>
<style> 
div {
  background-color: lightgreen; /* 背景颜色为浅绿色 */
  inline-size: 70%; /* 行内方向大小为70% */
  border-block-end-width: 10px; /* 块方向结束处的边框宽度为 10 像素 */
  border-block-end-style: dotted; /* 块方向结束处的边框样式为点状 */
}
</style>
</head>
<body>
<h2>border-block-end-style: dotted:</h2>
<div>
  <p>border-block-end-style 属性定义块方向结束处的边框样式。</p>
</div>
</body>
</html>