<!DOCTYPE html>
<html>
<head>
<style>
#example1 { background-color: lightblue;
height: 100px;
width: 200px;
border-end-start-radius: 50px;
}
#example2 { background-color: lightblue;
height: 100px;
width: 200px;
border-end-start-radius: 50px 20px;
}
#example3 { background-color: lightblue;
height: 100px;
width: 200px;
border-end-start-radius: 50%;
direction: rtl;
}
#example4 { background-color: lightblue;
height: 100px;
width: 200px;
border-end-start-radius: 50%;
writing-mode: vertical-rl;
}
</style>
</head>
<body>
<h1>border-end-start-radius 属性</h1>
<p>border-end-start-radius 属性定义了元素块结束边与行内开始边之间交角的圆角半径。</p>
<div id="example1">
<p>border-end-start-radius: 50px;</p>
</div>
<br>
<div id="example2">
<p>border-end-start-radius: 50px 20px;</p>
</div>
<br>
<div id="example3">
<p>border-end-start-radius: 50% and direction: rtl</p>
</div>
<br>
<div id="example4">
<p>border-end-start-radius: 50% and writing mode: vertical-rl;</p>
</div>
</body>
</html>