gpt4 book ai didi

css - 位置 :Fixed and IE

转载 作者:行者123 更新时间:2023-11-28 19:00:05 24 4
gpt4 key购买 nike

在过去的几天里,我一直在根据我画的一些艺术品为我的网站设计布局。布局在 Chrome 和 Firefox 上非常棒,然后我检查了 IE,它看起来很糟糕。

我知道只有 IE 7 支持位置固定,但它对我不起作用......我已经尝试了大约十种不同的代码,应该允许图像移动到右下角但是我的布局有多少层,它不起作用。

http://lindsiria.net/

如您所见,我在 IE 上有两个问题。我的整个布局都移了过来,我的主要横幅图片不在右下角。我想知道是否有人可以查看这段代码并帮助我找出解决这个恼人错误的方法。希望我发布的是正确的。

<code>
<!-- language: lang-css -->

* { margin:0;}
body {
background-color:#2397b6;
background-image: url("mainbackgroundrepeat1");
background-repeat: repeat-x;
background-position:bottom;
background-attachment:fixed;
height:100%;
}

a:link { color:#2b8c56;}
a:visited {color:#2b8c56;}
a:hover {color:#f0faef;}

#banner_wrap{
width: 100%;
display: block;
position:fixed;
bottom:0;
margin-left:800px;
width:500px;
z-index:-1;
height: 353px;

}

#logo_wrap {
position:absolute;
width:600px;
margin-left:200px;
margin-top:2px;
}

#wrap {
position:absolute;
width: 580px;
min-height:100%;
height: auto;
margin: 180px 0 -353px 180px;
background-color:#b2d6df;
border: 10px solid #2b8c56;
text-align: left;
padding: 10px;
}

#footer {
font-size: .75em;
font-style: italic;
text-align: left;

}
/* START NAVIGATION */

#centeredmenu {
float:left;
width: 600px;
margin-left:180px;
margin-top:100px;
background:#b2d6df;
border: 10px solid #2b8c56;
overflow:hidden;
position:absolute;
}
#centeredmenu ul {
float:left;
list-style:none;
margin:0;
padding:0;
position:relative;
left:50%;
text-align:center;
}
#centeredmenu ul li {
display:block;
float:left;
list-style:none;
margin:0;
padding:0;
position:relative;
right:50%;
}
#centeredmenu ul li a {
display:block;
width: 77px;
padding:9px;
margin:0 12px 0 12px;
border-bottom: 4px solid #5bc668;
color:#000;
text-decoration:none;
font-variant:small-caps;
letter-spacing:2px;
font-weight:500;
line-height:.7em;
}
#centeredmenu ul li a:hover {
border-bottom:4px solid #f0faef;
color:#000000;
}
/* END NAVIGATION */
</code>

最佳答案

浏览器以怪癖模式显示您的网站,这就是您的布局被破坏的原因。将您的文档类型更改为

<!doctype html>

另外,请注意绝对定位不利于创建布局。

关于css - 位置 :Fixed and IE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6261309/

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