ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 색, 텍스트, 글꼴
    web/css 2023. 12. 21. 19:34

    h2 {
        color: palegreen;
        background-color: plum;
    }
    
    p {
        background: antiquewhite;
    }

    background 는 background-color 보다 기능이 다양하다. (예: 배경이미지 넣기 등)

     

     

    텍스트

    h2 {
        text-align: center;
        font-weight: 800;
        text-decoration: blue underline;
        letter-spacing: 10px;
    }
    
    p {
        line-height: 2;
    }

     

     

    글꼴

    h2 {
        font-size: 80px;
        font-family: Calibri, Arial, sans-serif, monospace;
    }
    • font-family 에서 지정된 글꼴 순으로 시스템에 있는 것을 찾아 지정한다.
    • sans-serif, monospace 등은 generic family 인데, 여기에 속하는 폰트가 있으면 시스템에서 이걸 찾아 지정한다.

    'web > css' 카테고리의 다른 글

    위치 속성 (position)  (0) 2024.01.01
    CSS 단위  (0) 2023.12.31
    CSS 박스 모델  (0) 2023.12.29
    CSS Selector  (0) 2023.12.21

    댓글

Designed by Tistory.