Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style> 
div {
  background-color: lightgreen;
  inline-size: 300px;
  padding: 10px;
  border-inline-width: 5px;
  direction: rtl;
  border-inline-end-style: dotted;
}
</style>
</head>
<body>
<h2>border-inline-end-style: dotted:</h2>
<div>
  <p>With direction property value set to 'rtl', the dotted border at the end in the inline direction is on the left side.</p>
</div>
</body>
</html>