-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path240130_CSS.html
More file actions
70 lines (54 loc) · 1.44 KB
/
240130_CSS.html
File metadata and controls
70 lines (54 loc) · 1.44 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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>
td,
th {
border: 1px solid black;
}
table {
width: 100%;
border-collapse: collapse;
}
.colSecond {
width: 20%;
background-color: yellow;
border: 2px dotted red;
}
.text-center {
text-align: center;
}
</style> -->
<!-- ul li & first-child -->
<!-- 가상요소 선택자 p::before, p::after(마지막 자식요소로 무언가 설정) -->
<style>
ul li:first-child{
}
</style>
<!-- <style>
p::before {
content: 'hello';
}
p::after {
content: 'world';
}
</style> -->
<title>외부 스타일</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p> Hello world </p>
<div id="myDiv" class="box">
</div>
<div id="myP" class="box-txt">
<p> </p>
<p> </p>
<p> </p>
</div>
<p><strong>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Iusto quo ipsam, quia debitis dolorum voluptate, rerum consequuntur et asperiores odit incidunt rem quas quam! Sunt tempore fuga consequatur expedita voluptatibus.</strong> </p>
<a href> </a>
</body>
</html>