Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> div { padding: 30px; background-color: #8ebf42; color:#eee; } div:hover { background-color: #666; color: #fff; } </style> </head> <body> <h2>:hover selector </h2> <div> Lorem Ipsum ist ein Blindtext... </div> </body> </html>