gpt4 book ai didi

html - 由于 IE 和 Firefox 中的 CSS,页面上的滚动条

转载 作者:行者123 更新时间:2023-11-28 18:12:26 25 4
gpt4 key购买 nike

一段时间以来,我一直想解决我网站上的 CSS 问题,但毫无进展。

此网址 http://www.housekeys.co.uk/register.asp在 chrome 中很好,但在 IE 和 Firefox 中,我得到了水平和垂直滚动条,但不知道为什么。

谁能给我指出正确的方向!

谢谢

罗宾

最佳答案

这是因为你在 #main 上有 overflow: auto;

#main {
overflow: auto; /* remove this */
background: #FFFFFF none repeat scroll 0%;
height: 100%;
}

移除 overflow: auto;

同时从 #container 中移除 height: 100%; 但保留 min-height: 100%;

#container {
width: 770px;
margin: 0;
padding: 0;
text-align: left;
margin-left: auto;
margin-right: auto;
height: 100%; /* remove this */
min-height: 100%;
}

关于html - 由于 IE 和 Firefox 中的 CSS,页面上的滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18428934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com