Answers for "how inset box shadow works"

CSS
2

box shadow inset

/* offset-x | offset-y | blur-radius | color | inside */
box-shadow: 0px 1px 3px gray inset;
Posted by: Guest on September-09-2021
0

inset boxshadow

.shadow {
   -moz-box-shadow:    inset 0 0 10px #000000;
   -webkit-box-shadow: inset 0 0 10px #000000;
   box-shadow:         inset 0 0 10px #000000;
}
Posted by: Guest on October-16-2021

Browse Popular Code Answers by Language