<html>
<head>
<style>
#example {
background-color: lightgreen;
inline-size: 300px;
padding: 10px;
border-inline-style: solid;
direction: rtl;
border-inline-width: 5px 15px;
}
</style>
</head>
<body>
<h2>border-inline-width: 5px 15px:</h2>
<div id="example">
<p>当 direction 属性的值设置为 'rtl' 时,行内方向起始处最细的边框位于右侧,而行内方向末端最粗的边框位于左侧。</p>
</div>
</body>
</html>