font는 구글웹폰트에서 가져올수 있다.
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; /* 단어 단위로 된거 자르기 */
}
'HTML&CSS' 카테고리의 다른 글
CSS: after, before (가상선택자) (0) | 2020.07.14 |
---|---|
HTML&CSS: input, label, form (0) | 2020.07.05 |
CSS: background 속성 활용 (0) | 2020.07.02 |
CSS: display (block, inline, inline-block, none) (0) | 2020.06.30 |
CSS: 글자 관련 css속성(line-height, text-indent, letter-spacing) (0) | 2020.06.24 |
댓글