<html>
<head>
<style>
#example1 {
border: 2px solid red;
padding: 10px;
direction: rtl;
border-start-start-radius: 25px;
}
</style>
</head>
<body>
<h2>border-start-start-radius: 25px:</h2>
<div id="example1">
<p>With direction property value set to 'rtl', the start of inline direction is now on the right side of the element, and so the result of the border-start-start-radius property is also changed.</p>
</div>
</body>
</html>