Answers for "box shaodw"

19

box shadow

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

box shadow

/* Card Shadow with 2 layers */
.has-shadow{
	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 March-22-2021
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
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
0

box shadow

/*--- box shadow ---*/
box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
Posted by: Guest on July-03-2021

Browse Popular Code Answers by Language