Html/Css. cursor, inherit

kimkim·2025년 1월 22일
0

cursor

  • 마우스 커서 모양을 바꾸는 요소
  • 외우지는 말고 바꿀 수 있다는 것을 알고 활용할 것

MBM 마우스 커서 사이트
W3S 마우스 커서 사이트

inherit

  • 본인이 고유한 속성을 가지고 있는 것이 아니라 부모의 속성을 따라가는 속성
  • body에 폰트 색을 주면 하위 태그들의 색도 바뀌는 그런 태그들은 고유 속성이 inherit 인것이다.

자주쓰는 태그들의 기본속성

div, section, article, nav {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
    background-color: transparent;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    border: none;
    border-radius: 0;
    cursor: auto;
    text-align: inherit;
    text-decoration: inherit;
}

0개의 댓글