CSS Properties: How set the color of shadow?
Solution:
HTML Code :
Explanation:
- The width: 200px; CSS property sets the width of the div element to 200 pixels.
- The height: 100px; CSS property sets the height of the div element to 100 pixels.
- The border: 3px solid #FF0000; CSS property sets the border properties of the div element to a 3-pixel wide solid red border.
- The background-color: #4364FF; CSS property sets the background color of the div element to a shade of blue (#4364FF).
- The box-shadow: 10px 10px 40px 10px #22CC64; CSS property sets the shadow effect for the div element with a horizontal offset of 10 pixels, vertical offset of 10 pixels, blur radius of 40 pixels, spread radius of 10 pixels, and green color (#22CC64).
Live Demo:
See the solution in the browser
Supported browser
![]() |
![]() |
![]() |
![]() |
![]() |
Yes | Yes | Yes | Yes | Yes |
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.