HTML CSS examples for CSS Property:content
Use CSS to add a bullet point to any element
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> h1:before {<!--from w ww . jav a 2s .co m--> content:"? "; } </style> </head> <body> <h1>My H1 text here</h1> </body> </html>