Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> body { color: greenyellow; background: currentcolor; text-shadow: 0 0 5px black; font-size: 3em; text-align: center; } div { color: deeppink; background: currentcolor; padding: 10px; } div > div { color: gold; } </style> <body> Body <div> Outer div <div> Inner div </div> </div> </body>
Preview