博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于元素居中之我见(干货)
阅读量:5059 次
发布时间:2019-06-12

本文共 2389 字,大约阅读时间需要 7 分钟。

  1. 不使用定位

    水平居中:text-align = center;(可继承)

    竖直居中:margin:0 auto;(块级元素)

    其他居中:1.文字居中:父元素设置高 子元素设置高  line-height=height(父元素)

            2.图片居中:  vertical-aign:middle ;  <-- 必须放在图片元素中

1   .first{2     width: 300px;3     height: 100px;4     background-color: black;5     color: white;6     text-align: center;7     margin: 0 auto; //针对块级元素8 9   }
1   
2 不使用定位(1)3
.second{    width: 300px;    height: 100px;    background-color: green;  }  .s_child{    width: 150px;    line-height: 100px;  }
不使用定位(2)

  2.定位居中

   a.父元素高度固定     

    父元素:相对定位

    子元素:绝对定位

        top:50%(父元素高度的一半)

        left:50%

        margin-top:自己的高度一半;(加负号)

        margin-left:自己宽度的一半;(加负号)

.dw_one{      width: 600px;      height: 300px;      position: absolute;      background: black;    }    .dw_one_child{      background: white;      position: relative;      width: 50px;      height: 50px;      top: 50%;      left: 50%;      margin-top: -25px;      margin-left: -25px;    }
a

    b.父元素高度不固定

.wrapper{      width: 600px;      height: 600px;    }    .dw_two{      width: 100%;      height: 100%;      position: absolute;      background: black;    }    .dw_two_child{      background: white;      position: relative;      top: 50%;      left: 50%;      width: 100px;      height: 100px;      transform:translate(-50%, -50%);      -moz-transform:translate(-50%, -50%);      -ms-transform:translate(-50%, -50%);      -o-transform:translate(-50%, -50%);      -webkit-transform:translate(-50%, -50%);    }
1 
2
3
4 a5
6
7
 

   3.关于多行文本的居中

    使用display:table; display:table-cell;

    vertical-align:middle; 居中

1   #outer{ 2            width: 200px; 3            height: 200px; 4            background: #cccccc; 5            display: table; 6            _position: relative;   // "_"为了兼容IE6 7        } 8        #inner{ 9            display: table-cell;10            vertical-align: middle;11            _position: absolute;12            _top: 50%;13        }14        #content{15            _position: relative;16            _top: -50%;17        }
1 
2
3
4 Paradise_追逐者所写的居中问题总结之我见5
6
7

 

转载于:https://www.cnblogs.com/paradise-zzz/p/8456399.html

你可能感兴趣的文章
java 使用LinkedList模拟一个堆栈或者队列数据结构
查看>>
调整GDI显示方向
查看>>
node 单个表加条件查询
查看>>
单例模式
查看>>
Sublime Text 3 绝对神器
查看>>
enableEventValidation
查看>>
[GO]ticker的使用
查看>>
Linux限制端口
查看>>
C++变量初始化
查看>>
node学习心得
查看>>
顺序表存储空间连续问题
查看>>
牛客练习赛46 E 华华和奕奕学物理 (树状数组)
查看>>
JSP实现在项目在网页上查询
查看>>
zencart 网站空白的解决方案
查看>>
【9927】庆功会
查看>>
poi读excel小例子
查看>>
在一台呆滞设置两个listener(Oracle)
查看>>
KDE-SDK(KDE斥地工具)引见
查看>>
Informix IDS 11系统办理(918检验)认证指南,第 7 局部: IDS复制(22)
查看>>
Informix IDS 11系统操持(918考试)认证指南,第 7 部门: IDS复制(17)
查看>>