css3 position fixed固定居中问题解决方案
程序员文章站
2022-09-15 15:06:03
让此元素位置固定一般会添加position:fixed,但元素就不能居中了,fixed使对象脱离了正常文档流,解决方法如下... 14-08-19...
通常,我们要让某元素居中,会这样做:
#element{
margin:0 auto;
}
如果还想让此元素位置固定呢?一般我们会添加position:fixed,如下:
#element{
position:fixed;
margin:0 auto;
}
但是这样做的结果就是,元素不居中了。这说明fixed使对象脱离了正常文档流。
解决方案:
#element{
position:fixed;
margin:0 auto;
left:0;
right:0;
}
但是在ie7以下的版本中无法工作,要将其更改为:
#element{
position:fixed;
margin:0 auto;
left:auto;
right:auto;
}
最后我们可以这样:
if ($.browser.msie && parseint($.browser.version, 10) <= 7) {
stralertwrapper.css({position:'fixed', bottom:'0', height:'auto', left:'auto', right:'auto'});
}
复制代码
代码如下:#element{
margin:0 auto;
}
如果还想让此元素位置固定呢?一般我们会添加position:fixed,如下:
复制代码
代码如下:#element{
position:fixed;
margin:0 auto;
}
但是这样做的结果就是,元素不居中了。这说明fixed使对象脱离了正常文档流。
解决方案:
复制代码
代码如下:#element{
position:fixed;
margin:0 auto;
left:0;
right:0;
}
但是在ie7以下的版本中无法工作,要将其更改为:
复制代码
代码如下:#element{
position:fixed;
margin:0 auto;
left:auto;
right:auto;
}
最后我们可以这样:
复制代码
代码如下:if ($.browser.msie && parseint($.browser.version, 10) <= 7) {
stralertwrapper.css({position:'fixed', bottom:'0', height:'auto', left:'auto', right:'auto'});
}
上一篇: 冬季脚臭怎么根治?八种方法轻松灭杀!