EXAMPLE
Run
<!DOCTYPE html>
<html>

<head>
	<title>Border-block property</title>
	<style type="text/css">
		div {
	  background-color: pink;
	  width: 150px;
	  height: 150px;
	}
	
	.exampleText {
	  writing-mode: horizontal-tb;
	  border-block: 2px dotted purple;
	}
	</style>
</head>

<body>
	<div>
		<p class="exampleText">Let Us Learn With Study Tonight</p>
	</div>
</body>

</html>