EXAMPLE
Run
<!DOCTYPE html>
<html>

<head>
	<title>The inset-block-end property in CSS</title>
	<style type="text/css">
		div {
	  background-color: deeppink;
	  width: 120px;
	  height: 120px;
	}
	
	.exampleText {
	  writing-mode: horizontal-tb;
	  position: relative;
	  inset-block: 2.4em 3em;
	  background-color: #cff8fc;
	}
	</style>
</head>

<body>
	<div>
		<p class="exampleText">Study Tonight</p>
	</div>
</body>

</html>