Answers for "box shadow shorthand in css"

CSS
125

css box-shadow shorthand

/* offset-x | offset-y | blur-radius | spread-radius | color */
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
Posted by: Guest on August-13-2020
0

box shadow css property

.card {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
Posted by: Guest on September-20-2021

Browse Popular Code Answers by Language