마우스 호버
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
|
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
<style>
ul>li{
color: orange;
font-size: 20px;
font-weight: bold;
}
li:hover{
color: blue;
}
</style>
</head>
<body>
<div>
<ul>
<li>menu1</li>
<li>menu2</li>
<li>menu3</li>
<li>menu4</li>
<li>menu5</li>
</ul>
</div>
</body>
</html>
|
cs |
<결과>
728x90
'WEB > html,CSS' 카테고리의 다른 글
[html][css]구조 선택자 nth-child/ first-child/last-child (0) | 2021.04.04 |
---|---|
[html][css] 상태 선택자 input:focus / input:enabled/input:disabled css change (0) | 2021.04.04 |
[html][css] 동위선택자 (0) | 2021.04.04 |
[html][css] 자손 및 후손 선택자 / css자손, 후손 선택하는 법 (0) | 2021.04.04 |
[html][css] 속성 선택자 /input태그에서 text type만 선택하는 방법/ 특정 속성만 css를 바꾸는 방법 (0) | 2021.04.04 |