Answers for "box shadow vss"

19

box shadow

box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
// copy this
Posted by: Guest on June-29-2020
0

box shadow

/* offset-x, offset-y, (blur-radius and/or spread-radius=optional) and color */
selector {
  box-shadow: offset-x offset-y (blur-radius and/or spread-radius=optional) color;
}

/* Example */
.test-shadow {
	box-shadow: 4px 4px 20px 0px #0000003d;
}
Posted by: Guest on April-01-2021

Browse Popular Code Answers by Language