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-start-style: solid;
  writing-mode: vertical-rl;
  border-inline-start-width: 5px;
}
</style>
</head>
<body>
<h2>border-inline-start-width: 5px:</h2>
<div>
  <p>With writing-mode property value set to 'vertical-rl', the border affected by the border-inline-start-width property is on the top.</p>
</div>
</body>
</html>