居中方法总结

来源:互联网 发布:linux stage2存放在哪 编辑:程序博客网 时间:2024/05/16 15:38

居中方法总结:
1、文字垂直居中:
height:38px;
line-heiht:38px;

2、块状元素垂直居中于父元素:

.header_wrap{    height:80_px;    position:relative;}.header_logo{    height:38px;    position:absolute;    top:50%;    margin-top:-19px;}

3、块元素(容器)水平居中

.header_wrap{    width:100px;    margin:0 auto;}
0 0
原创粉丝点击