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 父母
width: auto; padding: 8px; white-space: nowrap;
在里面我得到了 2 input[type="text"]
float: left;
现在在 Chrome 上,它们将 1 对齐到另一个附近,但在 IE8 中,第二个输入位于第一个下方。
提前谢谢你,丹尼尔。
你不需要添加float:left
float:left
.wrap{ width: auto; padding: 8px; white-space: nowrap; background:violet; overflow:auto }
演示