Responsive font size in CSS

前端 未结 30 2756
刺人心
刺人心 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:48

    The "vw" solution has a problem when going to very small screens. You can set the base size and go up from there with calc():

    font-size: calc(16px + 0.4vw);
    

提交回复
热议问题