-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbord_box.html
More file actions
38 lines (36 loc) · 896 Bytes
/
bord_box.html
File metadata and controls
38 lines (36 loc) · 896 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
<!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>order box</title>
<style>
* {
margin: 0;
padding: 0;
}
.div1 {
width: 400px;
height: 300px;
background-color: lightblue;
border: 2px solid black;
}
.div2 {
height: 100px;
width: 100%;
padding: 5px;
border: 2px solid red;
background-color: lightyellow;
box-sizing: border-box;
}
</style>
</head>
<body>
<div class="div1">
<div class="div2">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia, similique!
</div>
</div>
</body>
</html>