CSS Properties: How set the color of shadow?
Solution:
HTML Code :
<!DOCTYPE html><!-- Declares the document type as HTML -->
<html><!-- Root element of the HTML document -->
<head><!-- Contains metadata about the HTML document -->
<title>How set the color of shadow</title><!-- Sets the title of the HTML document -->
<style type="text/css"> /* Begins a CSS style block */
div { /* Defines a CSS rule for all div elements */
width: 200px; /* Sets the width of the div element to 200 pixels */
height: 100px; /* Sets the height of the div element to 100 pixels */
border: 3px solid #FF0000; /* Sets the border properties of the div element */
background-color: #4364FF; /* Sets the background color of the div element to a shade of blue */
box-shadow: 10px 10px 40px 10px #22CC64; /* 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 */
}
</style><!-- Ends the CSS style block -->
</head><!-- Ends the head section of the HTML document -->
<body><!-- Contains the content of the HTML document -->
<p>w3resource Tutorial</p><!-- Displays a paragraph with the text "w3resource Tutorial" -->
<div>Box-shadow color</div><!-- Displays a div element with the text "Box-shadow color" and a shadow with green color -->
</body><!-- Ends the body section of the HTML document -->
</html><!-- Ends the HTML document -->
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 Pen box-shadow-color-answer by w3resource (@w3resource) on CodePen.
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics