-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex0911.html
More file actions
43 lines (37 loc) · 916 Bytes
/
index0911.html
File metadata and controls
43 lines (37 loc) · 916 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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>실습!</title>
</head>
<style>
.div_border{
border: 1px;
width: 10px;
height: 15px;
margin: 50px;
border-radius: 10px;
}
</style>
<body>
<table>
<table style="width: 300px;background-color:aqua">
<tr>
<td width="25%">1</td>
<td width="25%">1</td>
<td width="25%">1</td>
<td width="25%">1a</td>
</tr>
<tr>
</tr>
</table>
<div class="div_border">보더실습</div>
<div>112233</div>
<!--1. 포지션-->
<div style="position: fixed; bottom: 30px;">포지션 실습</div>
<!--2. float-->
<div style="float: left">float1</div>
<div style="float: right">float2</div>
</body>
</html>