Web/Html_Css
텍스트에 마우스 올렸을 때 마우스 모양 변경
Jaybon
2020. 3. 6. 10:56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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>
<body>
<h3>마우스 커서</h3><hr>
<p style="cursor: crosshair;">마우스커서</p>
<p style="cursor: help;">마우스커서</p>
<p style="cursor: pointer;">마우스커서</p>
<p style="cursor: progress;">마우스커서</p>
<p style="cursor: n-resize;">마우스커서</p>
</body>
</html>
|
cs |