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。
假设我有两个彼此相邻的图像元素。如何做到这一点,如果我将浏览器的大小更改为小于两个图像的宽度,它将导致页面获得水平滚动条(而不是将第二个图像推到第一个图像下方) ?
你会想要使用相对定位
例子:
test { position:relative; left:200px; }
这样,您的图像的位置将基于它左侧的其他对象的位置(在您的情况下是另一个图像)。
您还可以根据窗口坐标放置绝对位置。
希望这有助于 IronWill