COMBINATORS
Run
<!DOCTYPE html>
<html>
<head>
	<title>General sibling Selector</title>
	<style>
		div ~ p{
			background-color: orange;
			height: 30px;
			width: 100%;
		}
	</style>
</head>
<body>
<div>
	<p>Line 1</p>
	<p>Line 2</p>
	
</div>
<p>Line 3</p>
<p>Line 4</p>
<p>Line 5</p>
</body>
</html>