I wish to display pre-formatted text as stored in a MySQL database but want to avoid displaying the text in the fixed-width font that <pre>
imposes
Or am I mistaken that imposes any particular font but merely defaults to fixed-width?
答案 0 :(得分:0)
在任何其他元素中使用可变宽度字体的方式相同:使用CSS font-family属性。
pre { font-family: helvetica, sans-serif; }
&#13;
<pre>Hello
World</pre>
&#13;
答案 1 :(得分:-1)
找到一个解决方案......将white-space: pre-wrap;
添加到显示文本的元素的CSS样式中,实现了我正在寻找的结果