我在IE 11中遇到了我的CSS问题。我试图将一些链接向右移动,但当屏幕达到一定宽度时,链接会保持原样并导致滚动条出现并且很多白色。
Here's the site(查看页脚)该网站没有响应准备就绪,但我想至少获取链接以尽可能地浏览浏览器的宽度。
以下是截图:
答案 0 :(得分:2)
链接没有移动(并且出现滚动条),因为页脚内的容器上有一个设置的宽度
.container-custom {
width: 1250px;
margin: 0 auto;
}
您可以尝试将其更改为:
.container-custom {
width: 80%; // Or some other arbitrary value that won't be fixed
margin: 0 auto;
}
这样它仍将保持居中,但流畅地扩张和收缩。
答案 1 :(得分:1)
在您的页脚中,您有一个具有CSS .container-custom {width:1250px; margin:0 auto;}.
您需要将宽度设置为主宽度。 `