EXAMPLE
Run
<!DOCTYPE html>
<html>
<head>
	<title>The image-orientation property in CSS</title>
	<style type="text/css">
		border-box {
		  image-orientation: none; 
		  background-color: pink;
		  border: 2px solid blue;
		}
		div{
			color: red;
			background-color: skyblue;
		}
	</style>
</head>
<body>
	<div class="border-box">Study Tonight</div>
</body>
</html>