Answers for "how to give box shadow left right and bottom"

CSS
0

css box shadow right and down

.myDiv
{
  border: 1px solid #333;
  width: 100px;
  height: 100px;
  box-shadow: 10px 0 5px -2px #888;
}
Posted by: Guest on July-12-2021
0

box-shadow left right and bottom

-moz-box-shadow: 0px 3px 8px rgb(100,100,100);
-webkit-box-shadow: 0px 3px 8px rgb(100,100,100);
box-shadow: 0px 3px 8px rgb(100,100,100);
Posted by: Guest on August-25-2021

Code answers related to "how to give box shadow left right and bottom"

Browse Popular Code Answers by Language