<!DOCTYPE html>
<html>
<head>
<title>The inset-inline-end property in CSS</title>
<style type="text/css">
div {
background-color: red;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-rl;
position: relative;
inset-inline-end: auto;
background-color: #fc8ffc;
}
</style>
</head>
<body>
<div>
<p class="exampleText">Study Tonight</p>
</div>
</body>
</html>