8
8
04/13/2025 2
1
04/13/2025
04/13/2025 3
04/13/2025 4
2
04/13/2025
04/13/2025 5
04/13/2025 6
3
04/13/2025
04/13/2025 7
04/13/2025 8
4
04/13/2025
04/13/2025 9
04/13/2025 10
5
04/13/2025
04/13/2025 11
04/13/2025 12
6
04/13/2025
flex-direction: row;
flex-direction: row-reverse;
04/13/2025 13
flex-wrap: nowrap;
flex-wrap: wrap-reverse;
04/13/2025 14
7
04/13/2025
justify-content: start;
justify-content: space-around;
justify-content: end;
04/13/2025 15
align-items: stretch;
align-items: flex-start;
align-items: baseline;
04/13/2025 16
8
04/13/2025
align-content: stretch;
04/13/2025 17
04/13/2025 18
9
04/13/2025
</body>
</html>
04/13/2025 20
10
04/13/2025
04/13/2025 21
04/13/2025 22
11
04/13/2025
04/13/2025 23
04/13/2025 24
12
04/13/2025
04/13/2025 25
04/13/2025 26
13
04/13/2025
14
04/13/2025
selector:pseudo-class {
property: value;}
04/13/2025 29
04/13/2025 30
15
04/13/2025
04/13/2025 31
04/13/2025 32
16
04/13/2025
selector::pseudo-element {
property: value;}
04/13/2025 33
04/13/2025 34
17
04/13/2025
04/13/2025 35
04/13/2025 36
18
04/13/2025
04/13/2025 37
04/13/2025 38
19
04/13/2025
04/13/2025 39
04/13/2025 40
20
04/13/2025
04/13/2025 41
04/13/2025 42
21
04/13/2025
04/13/2025 43
04/13/2025 44
22
04/13/2025
04/13/2025 45
04/13/2025 46
23
04/13/2025
04/13/2025 47
04/13/2025 48
24
04/13/2025
04/13/2025 49
<!DOCTYPE html>
<html>
<head>
<style>
div {width: 300px;
height: 100px;
padding: 15px;
background-color: coral;
box-shadow: 10px 10px lightblue;}
</style>
</head>
<body>
<h1>The box-shadow Property</h1>
<div>This is a div element with a box-shadow</div>
</body>
</html>
04/13/2025 50
25
04/13/2025
• The blur parameter defines the blur radius. The higher the number, the more blurred the shadow
will be.
<!DOCTYPE html>
<html>
<head>
<style>
div {width: 300px;
height: 100px;
padding: 15px;
background-color: coral;
box-shadow: 10px 10px 5px lightblue;}
</style>
</head>
<body>
<h1>The box-shadow Property</h1>
<div>This is a div element with a box-shadow</div>
</body>
</html>
04/13/2025 51
<!DOCTYPE html>
<html>
<head>
<style>
div {width: 300px;
height: 100px;
padding: 15px;
background-color: coral;
box-shadow: 5px 5px 8px blue, 10px 10px 8px red, 15px 15px 8px green;}
</style>
</head>
<body>
<h1>The box-shadow Property</h1>
<div>This is a div element with a box-shadow</div>
</body>
</html>
04/13/2025 52
26
04/13/2025
04/13/2025 53
04/13/2025 54
27