Answers for "css box shadow nedir"

CSS
124

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
22

css box shadow

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

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