Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> #grad { height: 500px; background-color: grey; /* Für Browser, die keine Farbverläufe unterstützen */ background-image: radial-gradient(#e6ebef, #1c87c9, #8ebf42); } </style> </head> <body> <h1>Hintergrund Radial Gradient</h1> <div id="grad"></div> </body> </html>