[반응형 디자인 / 개발] 타이포그래피 Typography
Typography Scaling text Don't html { font-size: 2.5vw /*the user won't be able to resize the text. */ } Do html { font-size: calc(0.75rem + 1.5vw); /*the text will be resizable if you mix in a relative unit like em, rem, or ch. */ } But, there's a possibility that the text will get too small on narrow screens and too big on wide screens. Clamping text The clamp() function is like the..
Programming/TIL
2022. 6. 3. 12:21