<!DOCTYPE html>
<html>
<head>
<title>CSS Next Sibling Selector</title>
<style type="text/css">
div + p {
font-size: 24px;
}
</style>
</head>
<body>
<div>This is division text</div>
<p>This is paragraph text</p>
<hr />
<div>This is another division text</div>
<p>This is first paragraph text</p>
<p>This is second paragraph text</p>
</body>
</html>