Font scaling based on width of container

后端 未结 30 3042
面向向阳花
面向向阳花 2020-11-21 04:35

I\'m having a hard time getting my head around font scaling.

I currently have a website with a body font-size of 100%. 100% of what though? This seems t

30条回答
  •  失恋的感觉
    2020-11-21 05:21

    Solution with SVG:

    .resizeme {
      resize: both;
      margin: 0;
      padding: 0;
      height: 75px;
      width: 500px;
      background-color: lightblue;
      overflow: hidden;
    }
    █Resize This█

    Solution with SVG and text-wrapping using foreignObject:

    .resizeme {
      resize: both;
      margin: 0;
      padding: 0;
      height: 200px;
      width: 500px;
      background-color: lightblue;
      overflow: hidden;
    }

    heading

    Resize the blue box.

提交回复
热议问题