-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustom_Variable_Properties.html
More file actions
50 lines (42 loc) · 973 Bytes
/
Custom_Variable_Properties.html
File metadata and controls
50 lines (42 loc) · 973 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
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Custom variables/properties/</title>
<!-- to make it as global variable -->
<style>
:root{
--maxwidth: 323px;
--font-color: rgb(19, 105, 0);
}
.box{
--font-color: rgb(19, 105, 0);
width: 200px;
height: 200px;
background-color:red;
margin: 2px 9px;
border: red;
box-shadow: 12px 14px var(--font-color);
max-width: var(--maxwidth);
margin: auto;
}
.container{
display: flex;
--font-color: rgb(19, 105, 0);
background-color: var(--font-color);
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>