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.
今天早上我发现了一个奇怪的 CSS 问题,我希望 CSS 专家能帮助我。在这个演示中,为什么红色 div 中的文字会往下推?我预计这两个 div 会彼此相邻。谢谢! 编辑:谢谢大家的回答。我会接受一个答案。谁能解释为什么会这样?
…………………………………………………………………………………………………………………………
你好现在习惯了 vertical-align: top;
vertical-align: top;
div { display: inline-block; height: 50px; width: 50px; vertical-align: top; }
演示
添加float:left解决了这个问题。
float:left
工作样本