margin:0 auto+定宽在360浏览器兼容模式下不管用啊。。。 还有.select属性之类的。。。 怎么兼容老版浏览器?
2 回答
已采纳
暗部_阪
TA贡献30条经验 获得超33个赞
360兼容模式和360极速模式区别在于兼容模式是IE内核而极速模式是火狐内核
而margin是所有浏览器都兼容的一个属性,所以不管用的原因并不是说这个属性失效了,是其他属性造成的问题,可能是padding可能是长高,也可能是他父级元素的限制,这就需要你自己查毛病了。同样。。。select也是所有浏览器都兼容的、
林兴2021
TA贡献22条经验 获得超5个赞
<style> .main { width: 100%; height: 300px; display: block; position: absolute; background:gray; } .content { width: 80%; min-width: 980px; height: 100px; margin-left: 10%; margin-right: 10%; background: #d35c5b; display: block; position: relative; } </style> <!-- 主体部分 --> <body> <div class="main"> <div class="content"></div> </div> </body>
最外层包容块width:100%,设置为绝对定位,被包容的块div相对定位,width:80%,并设置一个最小宽度值采用绝对单位px,左右外边距分别10%,你这样试试
- 2 回答
- 0 关注
- 1828 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消