-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbox.html
More file actions
35 lines (31 loc) · 676 Bytes
/
box.html
File metadata and controls
35 lines (31 loc) · 676 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Box Model</title>
<style>
/* ... */
.c1{background-color: red;}
.c2{background-color: blue;}
.c3{background-color: yellow;}
.c4{background-color: green;}
.c1:hover{
background-color: aliceblue
;
}
div{color: black;
float: left;
text-align: center;
padding: 100px;
border: solid 2px ;
margin: 3%;
text-align: center;}
</style>
</head>
<body>
<div class="c1">1</div>
<div class="c2">2</div>
<div class="c3">3</div>
<div class="c4">4</div>
</body>
</html>