Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> p.green::selection { background: #8ebf42; } p.green::-moz-selection { background: #8ebf42; } p.blue::selection { background: #1c87c9; } p.blue::-moz-selection { background: #1c87c9; } p.yellow::selection { background: #ffcc00; } p.yellow::-moz-selection { background: #ffcc00; } p.red::selection { background: #ff6666; } p.red::-moz-selection { background: #ff6666; } </style> </head> <body> <p class="green">Wählen Sie den Text aus, um die grüne Markierungsfarbe zu sehen.</p> <p class="blue">Wählen Sie den Text aus, um die blaue Markierungsfarbe zu sehen.</p> <p class="yellow">Wählen Sie den Text aus, um die gelbe Markierungsfarbe zu sehen.</p> <p class="red">Wählen Sie den Text aus, um die rote Markierungsfarbe zu sehen.</p> </body> </html>