答案 0 :(得分:3)
问题在于以下css:
#thumbnav {
list-style: none;
display: block;
margin: 4px 0 0 0;
width: 20000px; <-- HERE
padding: 0;
overflow: visible;
position: relative;
}
您正在为元素提供20000像素的宽度,这会将您的布局向右推。一个向右走的方式!
尝试将width
更改为auto
。