Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> li:before{ content:"List item"; } p:after{ content:" with string value."; } </style> </head> <body> <h2>Beispiel für die Eigenschaft content</h2> <ul> <li>1</li> <li>2</li> <li>3</li> </ul> <p>Hier ist ein Absatz</p> </body> </html>