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 元素。
#wrapper { min-width:500px; overflow-x:scroll; }
并且还尝试将最小宽度属性设置为父 div。什么都没解决...
请帮忙。
尝试
#wrapper { min-width: 500px; overflow-x: scroll; position: relative; }