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