元素居中的几种方法

2018-10-06  本文已影响0人  花泽冒菜
  1. flexbox
<div class="container">
    <div class="div1">div1</div>
</div>
.container {
    width: 300px;
    height: 300px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}
.div1 {
    width: 100px;
    height: 100px;
    background: #039748;
}
  1. 绝对定位 + transform
<div class="container">
    <div class="div1">div1</div>
</div>
.container {
    width: 300px;
    height: 300px;
    border: 1px solid black;
    position: relative;
}
.div1 {
    width: 100px;
    height: 100px;
    background: #039748;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
上一篇 下一篇

猜你喜欢

热点阅读