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.
我正在使用两个 DIV 一个在另一个之下。在顶部 DIV 中,我使用了动态生成数据的多行标签。
当 Label 中的数据稍大时,不会生成 Space,但超出的数据会与较低的 DIV 合并
这是 Div 的 Css
white-space:inherit;
这是标签的CSS
float: left; width: 30%; overflow:auto;
你能帮助我吗?
给出第一个 DIV 类名称.container并将 css 写为 -
.container
.container{ overflow: hidden; }
label正在合并,因为next div它float: left有财产。overflow: hidden;将帮助您防止这种行为。
label
next div
float: left
overflow: hidden;