我正在尝试创建一个 HTML 页面滑块,所以我有我的容器 div,然后坐在外面,在左边我有一个上一个图标,在右边我有一个下一个图标。
我的问题是,当我将窗口调整为较小的屏幕时,图标会移动到容器的中心,我希望它们在调整大小时始终保持固定在容器外部的位置。
我的容器代码:-
width: 960px;
margin: 0 auto;
clear: both;
overflow: hidden;
min-height: 449px;
下一个和上一个代码:
a.vehicleSliderLeft {background: url('../img/slider_arrow_left.png');
width: 55px; height: 112px; left: 270px; background-position:0px;
background-repeat: no-repeat; position: fixed; top: 420px;}
a.vehicleSliderRight {background: url('../img/slider_arrow_right.png');
width: 55px; height: 112px; right: 270px; background-position:0px;
background-repeat: no-repeat; position: fixed; top: 420px;}
有任何想法吗?干杯