css div 急速模式和兼容模式中浏览出现布局问题 5
div+css如下<div><divid="HeadLeft"><divclass="inner"></div></div><divid="HeadContent"><d...
div+css 如下
<div>
<div id="HeadLeft">
<div class="inner"></div>
</div>
<div id="HeadContent">
<div class="inner"></div>
</div>
<div id="HeadRight">
<div class="inner"></div>
</div>
//css
<style type="text/css">
#HeadLeft,
#HeadRight {
float: left;
margin: 0 0 0 -490px;
width: 50%;
height: 335px;
}
#HeadContent {
width: 980px;
float: left;
background: green;
height: 335px;
background-image: url('../Images/HeadContent.jpg');
}
#HeadLeft .inner
{
height: 335px;
margin: 0 0 0 490px;
background-image: url('../Images/bg左.jpg');
}
#HeadRight .inner
{
height: 335px;
margin: 0 0 0 490px;
background-image: url('../Images/bg右.jpg');
}
</style>
浏览效果
在360急速模式下如下图,没问题。
但是在兼容模式下,出现错位问题。
在网站没发布的时候,兼容模式,急速模式浏览都没问题,发布后就出现以上问题! 展开
<div>
<div id="HeadLeft">
<div class="inner"></div>
</div>
<div id="HeadContent">
<div class="inner"></div>
</div>
<div id="HeadRight">
<div class="inner"></div>
</div>
//css
<style type="text/css">
#HeadLeft,
#HeadRight {
float: left;
margin: 0 0 0 -490px;
width: 50%;
height: 335px;
}
#HeadContent {
width: 980px;
float: left;
background: green;
height: 335px;
background-image: url('../Images/HeadContent.jpg');
}
#HeadLeft .inner
{
height: 335px;
margin: 0 0 0 490px;
background-image: url('../Images/bg左.jpg');
}
#HeadRight .inner
{
height: 335px;
margin: 0 0 0 490px;
background-image: url('../Images/bg右.jpg');
}
</style>
浏览效果
在360急速模式下如下图,没问题。
但是在兼容模式下,出现错位问题。
在网站没发布的时候,兼容模式,急速模式浏览都没问题,发布后就出现以上问题! 展开
3个回答
展开全部
<!--[if lt IE 9]>
<style type="text/css">
.sub{
width:900px;
}
.sub div li{
width:155px;
}
</style>
<![endif]-->
需要用到这类的写法对IE的判断
试下这个非IE内核的写法,看看
<!--[if !IE]> -->
According to the conditional comment this is not IE<br />
<!-- <![endif]-->
<style type="text/css">
.sub{
width:900px;
}
.sub div li{
width:155px;
}
</style>
<![endif]-->
需要用到这类的写法对IE的判断
试下这个非IE内核的写法,看看
<!--[if !IE]> -->
According to the conditional comment this is not IE<br />
<!-- <![endif]-->
追问
不太明白!?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询