Pseuso Elements Styling
by Ronny
HTML
<div>
<p>Hi there</p>
</div>
CSS
div:after {content: 'Hello'; width: 200px; height: 40px;}
div {color: green;}
div * {background: red;}
by Ronny
<div>
<p>Hi there</p>
</div>
div:after {content: 'Hello'; width: 200px; height: 40px;}
div {color: green;}
div * {background: red;}