CSS各种居中方法

水平居中:
在当前元素 margin:0 auto




垂直居中:

  1. 单行文本时
    定义高度和行高相等 设置height值 与 line-height值相同
  2. 多行文本时
    通过设置display:table 、display:table-cell属性来设置内容垂直居中 相当于模拟表格的垂直居中

html代码

    <div id="content">
        <div id="center">
            多行<br/>文本
        </div>
    </div>

css代码

        #center{
            margin:0 auto;
            vertical-align: middle;
            display: table-cell;
            border: 1px solid red;
            width: 80px;
            text-align: center;
        }
        #content{
            display: table;
            height:700px;
        }

3.块级元素

html代码

    <div>
        <div id="center">
            对整个DIV块进行垂直居中
        </div>
    </div>

css代码

    #center{
            border: 1px solid red;
            position: absolute;
            margin:auto;
            top:0;
            left:0;
            bottom:0;
            right:0;
            height:30%
        }






CSS3的FlexBox实现居中(趋势)
注:兼容性比较差,IE9及以下版本不兼容

将display属性设置为flex(每个内核都要声明一次)

#display{
    display:flex; //兼容IE10以上
    display: -webkit-flex; //兼容Chrome\Opera等浏览器

设置
水平方向居中:justify-content:center;
垂直方向居中:align-items:center
“一键居中“: 父元素设置 flex,子元素 margin:auto

<style> 
.flex-container {
    display: -webkit-flex;
    display: flex;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

.flex-item {
    background-color: cornflowerblue;
    width: 75px;
    height: 75px;
    margin: auto;
}
</style>
</head>
<body>

<div class="flex-container">
  <div class="flex-item">Perfect centering!</div>
</div>

</body>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值