Getting the right font-size on every mobile device

前端 未结 5 1844
终归单人心
终归单人心 2021-01-01 11:27

In my mobile app I use kind of big fonts for example:

text

When I test it on

5条回答
  •  失恋的感觉
    2021-01-01 12:33

    Use @media Queries and set different fonts for different resolutions

    Example

    @media all and (max-width: 1200px) and (min-width: 800px) {
                        /* Change Resolutions Here */
      b {
        font-size: 12px;
      }
    }
    

    Good Read On Media Queries

提交回复
热议问题