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