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.
我试图破解一个position: absolute;元素的正常行为,以便它占据它通常会的高度,并与它下面的元素很好地配合。
position: absolute;
通常我可能会margin-top: XXpx对其下方的元素进行快速而肮脏的处理,但我使用的是响应式 CSS 框架,并且随着视口的变化而崩溃。我需要绝对定位来将一个部分(白框)扩展到页面的整个宽度,而另一部分则适合中心的包裹。
margin-top: XXpx
这样做的正确方法是什么?
正确的方法是使用媒体查询。
检查以下链接:
媒体查询
Developer.mozilla.org:媒体查询
css-tricks.com:媒体查询
谢谢 AB