Making every character on a web page the same width

前端 未结 7 1314
面向向阳花
面向向阳花 2020-12-05 17:43

Is there a font or CSS property that would give every character the same width without the need of drawing them yourself(.ttf)?

7条回答
  •  無奈伤痛
    2020-12-05 18:07

    You could chose from any of the freely available fixed width fonts and embed them in your site.

    If you don't want to embed a font in your page, you could use the following to take whatever monospace (another term for fixed width) font is available:

    font-family: "Courier New", Courier, monospace;
    

提交回复
热议问题