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
|
<!DOCTYPE html>
<html>
<head>
<style>
div > p:nth-of-type(2) {
background: red;
}
div > p:nth-child(2){
background: yellow;
}
</style>
</head>
<body>
<div>
<h2>test</h2>
<p>The first paragraph.</p>
<p>The second paragraph.</p>
<p>The third paragraph.</p>
<p>The fourth paragraph.</p>
</div>
</body>
</html>
|
cs |
'programming' 카테고리의 다른 글
mac osx posteGre 홈페이지 다운 후 실행 방법 (0) | 2019.04.30 |
---|---|
postgreSQL 환경 변수 설정 (win10) (0) | 2019.04.27 |
구글 스프레드 시트 - 조건부 서식 - 행에 색깔 넣기 (0) | 2019.04.04 |
우분투에서 mysql 접속이 안 되었을 때 (0) | 2019.04.02 |
factorial (0) | 2019.03.30 |