有没有办法通过CSS模拟pre
元素的显示?
例如,我可以使用CSS规则在此div中保持空格完整吗?
<div class="preformatted">
Please procure the following items:
- Soup
- Jam
- Hyphens
- Cantaloupe
</div>
答案 0 :(得分:150)
使用white-space: pre
保留空格预格式化,如pre
元素中所示。要更进一步,还要添加font-family: monospace
,因为pre
元素通常默认设置为等宽字体(例如,用于代码块)。
.preformatted {
font-family: monospace;
white-space: pre;
}
<div class="preformatted">
Please procure the following items:
- Soup
- Jam
- Hyphens
- Cantaloupe
</div>
答案 1 :(得分:38)
.preformatted {
white-space: pre-wrap;
}
我认为“预包装”更好。它可以帮助长线。
答案 2 :(得分:10)
答案 3 :(得分:3)
为了获得你可以使用的<pre>
;
div.preformatted{ white-space: pre ; display: block; }