Answers for "css 2 box shadows"

CSS
2

how to add box shadow to all sides css

div {
    box-shadow: 0 0 10px #fff;
}
Posted by: Guest on February-02-2021
0

multiple box shadows css

.container{
  box-shadow:
    0 0 0 10px hsl(0, 0%, 80%),
    0 0 0 15px hsl(0, 0%, 90%);
}
Posted by: Guest on August-15-2021

Browse Popular Code Answers by Language