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