728x90
반응형
<!DOCTYPE html>
<html lang="ko">
<head>
<title>cursor</title>
<meta charset="UTF-8">
<style>
div {
width: 100px;
height: 100px;
background-color: black;
cursor: not-allowed;
/* cursor : 마우스 커서의 모양 지정
default : (기본값) 기본 화살표 모양
pointer : 클릭 손 모양
text : I빔
not-allowed : 금지
등등...
*/
}
</style>
</head>
<body>
<div>가나다</div>
<div>라마바</div>
</body>
</html>
728x90
반응형
'정보 > WEB' 카테고리의 다른 글
filter(이미지나 요소에 효과주기) (0) | 2022.12.24 |
---|---|
display(표시 설정) (0) | 2022.12.24 |
color(색상) (0) | 2022.12.24 |
box-sizing(박스크기) (0) | 2022.12.21 |
box-shadow(박스그림자) (0) | 2022.12.21 |