text not obeying encapsulating div's max-width in Firefox
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该声明white-space: pre防止包装,因此删除它可以解决此问题。但是,如果您希望在内容中保留空格,请white-space: pre-wrap改用(警告:IE 7 中不支持)。
white-space: pre
white-space: pre-wrap
请注意,换行不保留缩进:如果一行以空格开头并被换行,则下一行从第一个位置开始,没有缩进。要获得保留缩进的包装(并且可能比初始行缩进更多的连续行),您需要不同的标记:使每个逻辑行成为一个元素等。