Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> /* before selection */ .shadow2{ text-shadow: 1px 1px 1px; } .shadow3{ text-shadow: 1px 2px 4px #000; } .shadow4{ text-shadow: 1px 2px 4px; } /* after selection */ .shadow1::-moz-selection{ text-shadow: 1px 1px 1px; background-color: transparent; } .shadow1::selection{ text-shadow: 1px 1px 1px; background-color: transparent; } #shadow2::-moz-selection{ text-shadow: none; background: #fffae6; } .shadow2::selection{ text-shadow: none; background: #fffae6; } .shadow3::-moz-selection{ text-shadow: 1px 1px 2px #222; } .shadow3::selection{ text-shadow: 1px 1px 2px #222; } .shadow4::-moz-selection{ text-shadow: 1px 2px 4px #208A28; background-color: transparent; color: #208A28; } .shadow4::selection{ text-shadow: 1px 2px 4px #208A28; background-color: transparent; color: #208A28; } </style> </head> <body> <p class="shadow1">Wählen Sie diesen Text aus, um den Textschatten zu sehen.</p> <p class="shadow2">Wählen Sie diesen Text aus, um den Textschatten zu entfernen.</p> <p class="shadow3">Wählen Sie diesen Text aus, um den Text klarer zu machen.</p> <p class="shadow4">Wählen Sie diesen Text aus, um die Farbe des Textschattens zu ändern.</p> </body> </html>