우선순위는 id > class > 태그선택자
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
h3, li{color: indigo;} /*h3태그와 li태그*/
ul strong{color: dodgerblue;} /*ul태그 하위태그중에 li태그*/
div > div > strong {background-color: khaki;}/*div태그 하위태그 중에 div태그 하위태그인 */
.main {background-color: lightblue;}
#list {background-color: lightseagreen;}
#list span {color:hotpink;}
.warning {color: darkblue;}
h3:first-letter{color:red;}
/*:first-letter 는 가상 class입니다. / 태그 뒤에 . 나오면 클래스/태그 뒤에 : 나오면 가상클래스*/
li:hover{background-color:lightpink;}
</style>
<body class="main">
<h3>Web Programming</h3>
<hr>
<div>
<div>2학기 <strong>학습 내용</strong>입니다.</div>
<ul id="list">
<li><span>HTML5</span></li>
<li><strong>CSS</strong></li>
<li>JAVASCRIPT</li>
</ul>
<div class="warning">60점 이하는 F</div>
</div>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'HTML&CSS' 카테고리의 다른 글
CSS 텍스트 꾸미기 // how to decorate text in CSS (0) | 2020.03.06 |
---|---|
CSS 색 활용 // how to use CSS to color any HTML text element using an HTML tag, ID or class. (0) | 2020.03.05 |
HTML 문서에 CSS 스타일 시트 만드는 방법들 (0) | 2020.03.05 |
CSS 로 예쁘게~! (0) | 2020.03.05 |
회원가입 form (type속성의 값들 실습) (0) | 2020.03.05 |