Answers for "box shadow only on sides and bottom"

CSS
0

css box shadow not on bottom

box-shadow: 0px -8px 10px lightgrey;
Posted by: Guest on July-03-2020
0

box shadow 2 sides only

div:before, div:after {
  content: " ";
  height: 100%;
  position: absolute;
  top: 0;
  width: 15px;
}
div:before {
  box-shadow: -15px 0 15px -15px inset;
  left: -15px;
}
div:after {
  box-shadow: 15px 0 15px -15px inset;
  right: -15px;
}

div {
  background: #EEEEEE;
  height: 100px;
  margin: 0 50px;
  width: 100px;
  position: relative;
}
Posted by: Guest on December-16-2021

Browse Popular Code Answers by Language