Answers for "use of the insert element in box shadow"

CSS
8

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
9

adding shadow to a div

/* CSS box shadow look like paper lift up*/
/* provide shadow to all four corners */
/* source - W3Schools.com */
 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
Posted by: Guest on June-10-2020

Browse Popular Code Answers by Language