-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex05-03.html
37 lines (37 loc) · 1.01 KB
/
ex05-03.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
<!DOCTYPE html>
<html lang="ko">
<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>절대 배치</title>
<style>
div {
display : inline-block;
position : absolute;
border : 1px solid lightgray;
}
div > p {
display : inline-block;
position : absolute;
height : 20px;
width : 15px;
background : lightgray;
}
</style>
</head>
<body>
<h3>Merry Christmas !</h3>
<hr>
<p>예수님이 탄생하셨습니다.</p>
<div>
<img src="media/christmastree.png"
width="200" height="200" alt="크리스마스 트리">
<p style="left: 50px; top:30px">M</p>
<p style="left: 100px; top:0px">E</p>
<p style="left: 100px; top:80px">R</p>
<p style="left: 150px; top:110px">R</p>
<p style="left: 30px; top:130px">Y</p>
</div>
</body>
</html>