CSS line-height, letter-spacing, word-spacing 속성에 대해


line-height

⇒ 줄과 줄 사이의 간격을 조정하는 속성


letter-spacing

⇒ 글자와 글자간의 간격을 조정하는 속성


word-spacing

⇒ 단어와 단어 사이의 간격을 조정하는 속성


이들에 대한 값은 em단위를 채택해야 한다. 


다음은 코드 조각이다.


h1, h2 {

   text-transform: uppercase;

   letter-spacing: 0.2em;}


.author {

   font-weight: bold;

   word-spacing: 1em;}




+ Recent posts