-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtut15.htm
More file actions
44 lines (40 loc) · 997 Bytes
/
tut15.htm
File metadata and controls
44 lines (40 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> CSS Variables / Custom property</title>
<style>
:root{
--primary-color:rgb(223, 155, 29);
--danger-color:blue;
--maxwi:433px;
}
.box{
width: 200px;
height: 200px;
background-color: var(--primary-color);
border: 2px solid red;
box-shadow: 3px 3px var(--danger-color);
margin: 2px 9px;
}
.container{
margin :auto;
max-width: var(--maxwi);
display: flex;
background-color: var(--box-color)
/* here below properties will not work */
align-items : center;
justify-content : center;
}
</style>
</head>
<body>
<div class="container">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
</body>
</html>