본문 바로가기
Front End/HTML & CSS

[CSS] 김버그의 HTML&CSS는 재밌다 | Typography

by 옐 FE 2021. 4. 28.

  [Typography]  

 


 

.text {
    font-size : 16px; /* px em rem */
    line-height: 1.5;
    letter-spacing: -0.01em; /* px em */
    font-family: "Poppins". sans-serif;
    font-weight: 400; /* regular: 400; bold: 700; */
    color: #0061ff; /* hex rgb rgba */
  
    text-align: left; /*left center right */
    text-indent: 10px;
    text-transform: none; /* none capitalize uppercase lowercase */
    text-decoration: none; /* none underline line-through overline */
    font-style: normal; /* normal italic oblique */
}

 

 

 

댓글