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.
我正在用divs 和spans 制作表格类型的布局。当任何 s 为空时,我会遇到一些奇怪的行为span- 父级顶部出现边距。
div
span
我认为它可能与使用有关,display: inline-block但我不确定它为什么这样做。
display: inline-block
这就是我所说的
有什么办法可以解决这种奇怪的布局行为吗?
添加vertical-align:top到.ListView_ColParent
vertical-align:top
.ListView_ColParent
.ListView_ColParent { display:inline-block; vertical-align:top; }
jsFiddle 示例