Answers for "to add shadow effects css without boxshadow"

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
0

box shadow css animation

.box-shadow {
  box-shadow: 0 3px 5px 0 rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease-in-out;
}
Posted by: Guest on February-07-2021

Browse Popular Code Answers by Language