whatisthis?
CSS) CSS cursor(커서) attribute 본문
cursor
cursor 속성은 요소 위에 마우스 커서가 올라갔을 때 보여줄 모양을 지정한다.
** cursor 속성의 속성값으로 올 수 있는 value
키워드 값 | cursor: pointer; cursor: auto; |
URL, 대체 키워드 | cursor: url(hand.cur), pointer; |
URL, 좌표 or 대체키워드 | cursor: url(cursor2.png) 2 2, pointer; |
전역 값 (Global values) | cursor: inherit; cursor: initial; cursor: unset; |
REFERENCE
REF: https://developer.mozilla.org/ko/docs/Web/CSS/cursor
https://mywebproject.tistory.com/108
위 예제에서는
.dropdown-button {
width: 40px;
padding: 0;
border: none;
border-radius: 5px;
overflow: hidden;
background-color: transparent;
cursor: pointer;
}
위와 같이 button 요소 위에 마우스를 올렸을때 pointer 형태의 모양으로 보이도록 지정한다.
pointer | The cursor is a pointer that indicates a link. Typically an image of a pointing hand. |
'WEB STUDY > HTML,CSS' 카테고리의 다른 글
HTML 훈련 - (10) Input Group (0) | 2021.11.08 |
---|---|
CSS) CSS opacity(불투명도) attribute (cf. rgba 이용) (2) | 2021.11.04 |
HTML 훈련 - (9)GitHub Dropdown Menu (0) | 2021.11.04 |
CSS) 다중 선택자 (Selector) - 선택자가 여러개일 경우 (0) | 2021.11.04 |
HTML 훈련 - (8) Receipt (0) | 2021.11.04 |