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