Home
CSS
CSS Shadows
Box Shadow
Tryit: box-shadow with spread radius
Run ❯
Get your
own
website
Result Size:
625 x 534
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <head> <style> div { width: 300px; height: 100px; padding: 15px; background-color: coral; box-shadow: 10px 10px 5px 12px lightblue; } </style> </head> <body> <h1>The box-shadow Property</h1> <div>A div element with a blurred, lightblue box-shadow, with a spread radius of 12px.</div> </body> </html>