-
Notifications
You must be signed in to change notification settings - Fork 0
/
display.html
41 lines (41 loc) · 1.02 KB
/
display.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
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>Document</title>
<style>
.frame {
width: 250px;
}
.frame p {
width: 48%;
height: 80px;
display: inline-block;
}
.frame2 {
display: none;
}
.me {
visibility: hidden;
}
</style>
</head>
<body>
<div class="frame frame1">
<p>아무거나 <span class="write">작성</span>을 해봅시다</p>
<p>아무거나 작성을 해봅시다</p>
</div>
<div class="frame frame2">
<p>아무거나 작성을 해봅시다</p>
<p>아무거나 작성을 해봅시다</p>
</div>
<div class="frame frame3">
<p>아무거나 작성을 해봅시다</p>
<p>아무거나 작성을 해봅시다</p>
</div>
<div>
나는 <span class="me">슈퍼맨</span>입니다.
</div>
</body>
</html>