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规则:
.box_skitter {position:relative;width:800px;height:300px;background:#000;right:442px;margin-top:52px;margin-bottom:32px;} www.tranceil.fm
有什么想法吗?
删除skitter.styles.css中的位置选项位置/右,并为水平位置添加自动边距
.box_skitter { width: 985px; height: 560px; margin: 52px auto 32px; background: black; }