您的位置:首页 > Web前端 > CSS

css Absolute绝对定位居中和div沉底

2015-11-05 14:27 1116 查看
1、绝对定位中的居中:

1
.Absolute-Center
{
2
  
margin
auto
;
3
  
position
absolute
;
4
  
top
0
left
0
bottom
0
right
0
;
5
}
2、div沉底:

view
source

print?

1
.banquan
{
2
    
position
fixed
 
!important
;
3
    
bottom
0px
;
4
    
position
absolute
;
5
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: