EXMPLE
Run
<!DOCTYPE html>
<html>

<head>
	<title>Counter-set property in CSS</title>
	<style type="text/css">
		div{
		  background-color: yellow;
		  color: red;
		   counter-set: inherit;
		}
	</style>
</head>

<body>
	<div>Study Tonight is the best platform to learn digital in a simplified way This is a bunch of texts. The text is equally distributed over the columns.</div>
</body>

</html>