<html>
<head>
<style>
div {
background-color: lightgreen;
inline-size: 300px;
padding: 10px;
writing-mode: vertical-rl;
border-inline-end: 5px solid blue;
}
</style>
</head>
<body>
<h2>border-inline-end and writing-mode</h2>
<div>
<p>With writing-mode property value set to 'vertical-rl', the border affected by the border-inline-end property is on the bottom.</p>
</div>
</body>
</html>