본문 바로가기
HTML&CSS

CSS: 자주쓰이는 font 속성

by 뀨ㅎㅎ 2020. 7. 3.

font는 구글웹폰트에서 가져올수 있다.

 

https://fonts.google.com/

 

Google Fonts

Making the web more beautiful, fast, and open through great typography

fonts.google.com

 

 

 

ul li a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: bold;
  font: normal bold 14px/54px 'Open Sans', sans-serif; /* 폰트속성 한번에 쓸경우 */
  font: normal 14px/1 'Open Sans', sans-serif; /* line-height 기본 */
  color: #000; /* 폰트색상 */
  text-decoration: none; /* 밑줄여부 */
  text-transform: uppercase; /* 대문자로 바꿀경우 */
  letter-spacing: 0.05em; /* 자간 */
  line-height: 14px; /* 세로 줄 크기 */
  text-indent: -9999em; /* 들여쓰기, 보통 글자 숨길때 사용 */
  word-break: break-all; /* 단어 단위로 된거 자르기 */
}

 

 

 

댓글