Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
/* Double colon is the modern standard */ p::first-line { font-weight: bold; } p::first-letter { font-size: 2em; float: left; } h2::before { content: "# "; color: #007bff; } /* ::after adds content after the element */ .required::after { content: " *"; color: red; }
Result
Open