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.
我想像这样在彼此之上有两个网格视图:
顶部的样式为 float:right 和 overflow: auto 用于滚动条。
底部的样式溢出:滚动条的 auto 也是如此。
但是,当我尝试查看我的页面时,gridview 2 最终位于 gridview 1 的左侧(除非我删除了溢出:自动)。有没有办法解决这个问题?我尝试使用<br>但没有帮助。
<br>
在两个网格视图之间添加一个<div>元素,该元素style="clear: both;"将用作浮动元素之间的中断。
<div>
style="clear: both;"
或者你可以添加style="clear: both;"到每个gridview。
您在这里有两个选择.. 正如@Mike 建议的那样,为两个 div 添加 Clear:both ..
或者将两个网格完全放在不同的 div 中。
由于 div 是块级元素,它们将一个低于另一个..