ahmed0saber

Neon shadow in HTML CSS

Jun 3rd, 2021 (edited)
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.44 KB | None | 0 0
  1. <html>
  2. <head>
  3.   <style>
  4.   body{
  5.     margin: 0;
  6.     background-color: #111;
  7.   }
  8.   div {
  9.     margin: auto;
  10.     margin-top: 40px;
  11.     margin-bottom: 40px;
  12.     width: 150px;
  13.     height: 150px;
  14.     background-color: #333;
  15.     box-shadow: 0px 0px 10px 5px #0ff;
  16.   }
  17.   p{
  18.     padding: 10px;
  19.     margin: 0;
  20.     color: #EEE;
  21.   }
  22.   </style>
  23. </head>
  24. <body>
  25. <div>
  26.   <p>Hello</p>
  27.   <p>My name is Ahmed Saber</p>
  28. </div>
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment