-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbox.html
More file actions
41 lines (36 loc) · 774 Bytes
/
box.html
File metadata and controls
41 lines (36 loc) · 774 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Box</title>
<style>
.main_box{
border: 2px solid greenyellow;
}
.content_box{
margin: 5px 10px 14px 2px;
background-color: blue;
text-align: center;
width: 50%;
color: azure;
/*padding-top: 15px;
padding-right: 15px;
padding-bottom:15px ;
padding-left: 15px;*/
padding: 5px 10px ;
/* border-color: brown;
border-width:5px ;
border-style: dotted;*/
border: 4px solid red;
}
</style>
</head>
<body>
<div class="main_box">
<div class="content_box">
<span>Content</span>
</div>
</div>
</body>
</html>