Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> p::before { content: "Name -"; } .country::before { content: normal; } </style> </head> <h2>Beispiel für die Eigenschaft content</h2> <body> <p>Ich heiße John</p> <p class="country">Ich lebe in Canada</p> </body> </html>