Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> html, body { height: 100%; padding: 0; margin: 0; } body { display: flex; align-items: center; justify-content: center; } div { padding: 10px; border: 0.5px solid #1c87c9; border-radius: 20px; line-height: 4em; box-shadow: 0 0 18px 0 #1c87c9; } </style> </head> <body> <div> <h1>Shadow around Border</h1> </div> </body> </html>