0

我遇到了一个问题,我正在使用的投资组合查看器的左导航箭头随着窗口的大小而移动,我无法弄清楚如何将它包含在我的 div 中并保持静止。我正在使用的插件称为“Portfoliojs”

这是我遇到问题的页面的链接:http: //bopratt.com/bopratt/test/

有任何想法吗?

4

1 回答 1

0

具有 position: absolute 的元素是相对于页面的,或者是下一个最高的相对定位元素。

您可以添加 position: relative to #bomain 这将使 position: absolute in .gallery-arrow-right 相对于该 div 而不是页面(并不总是保持在左侧:距页面左边缘的 x 距离)

#bomain {
    position: relative;
    /* other stuff */
}

您还需要调整 .gallery-arrow-right 上的 CSS(类似于顶部:0 和左侧:870px)

于 2013-10-13T02:53:05.860 回答