Answers for "basic box shadow"

72

css box shadow

/* 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
23

css box shadow

#example1 {
  box-shadow: 10px 10px 8px #888888;
}
Posted by: Guest on January-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 #888888;
}
Posted by: Guest on April-01-2021

Browse Popular Code Answers by Language