我正在处理一个页面。当内容大于实际页面时,我的滚动条不会放在右侧 - 与实际结束有一个小但可识别的边距。它只发生在一个小页面上。对于内容管理,我使用 wordpress。该页面的链接在这里http://wp.cloudstarter.de/?page_id=156
问问题
58 次
3 回答
1
您在#page 上将宽度设置为 95%。将宽度设置为 100%,它应该会处理它。
#page {
position: relative;
z-index: 2;
width: 100%;
height: 100%;
max-height: 100%;
min-height: 100%;
margin: 0 auto;
overflow-x: hidden;
}
于 2013-11-07T14:20:48.050 回答
1
从#page 中删除“宽度:95%”
于 2013-11-07T14:23:56.290 回答
0
您已将宽度 100% 指定给#page,只需删除该宽度即可。是块元素,默认宽度为 100%。
#page {
position: relative;
z-index: 2;
/* width: 95%; */ just remove this width
height: 100%;
max-height: 100%;
min-height: 100%;
margin: 0 auto;
overflow-x: hidden;
}
于 2013-11-07T14:28:07.323 回答