x
 
<!DOCTYPE html>
<html>
<head>
<style> 
#example1 {
  border: 2px solid red;
  padding: 10px;
  direction: rtl;
  border-start-end-radius: 25px;
}
</style>
</head>
<body>
<h2>border-start-end-radius: 25px:</h2>
<div id="example1">
  <p>当 direction 属性的值设置为 'rtl' 时,行内方向的末端现在位于元素的左侧,因此 border-start-end-radius 属性的结果也会相应改变。</p>
</div>
</body>
</html>