Responsive font size in CSS

前端 未结 30 3245
刺人心
刺人心 2020-11-22 07:23

I\'ve created a site using the Zurb Foundation 3 grid. Each page has a large h1:

30条回答
  •  南旧
    南旧 (楼主)
    2020-11-22 07:50

    Try including this on your style sheet:

    html {
      font-size: min(max(16px, 4vw), 22px);
    }
    

    More info at https://css-tricks.com/simplified-fluid-typography/

提交回复
热议问题