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.
我有以下jsFiddle并想在每个不同颜色的内容中放置一些内容#div部分中放置一些内容。
#div
但是,当我尝试这样做时,信息超出了分配的空间,如this jsFiddle所示。
我怎么能做到这一点?
删除此 css 属性:
white-space: nowrap;
这是因为您正在使用white-space: nowrap;该方法:
空白序列将折叠成单个空白。文本永远不会换行到下一行。文本继续在同一行,直到<br />遇到标签,所以请从您的 css 代码中删除它
<br />
这是了解的链接white-space property
white-space property
http://css-tricks.com/almanac/properties/w/whitespace/