-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
33 lines (32 loc) · 808 Bytes
/
test.html
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
<!DOCTYPE html>
<html>
<head>
<style>
.box{
width: 300px;
height: 300px;
border: 10px solid;
margin: 10rem;
padding: 20px;
background-color: red;
display: flex;
justify-content: center;
align-items: center;
}
.box-2{
width: 50px;
height: 10rem;
border: 10px solid;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div class="box">
<div class="box-2"></div>
</div>
</body>
</html>