每日一題: 元素水平垂直居中的方式有哪些?

20190119問:

元素水平垂直居中的方式有哪些?微信

  • absolute加margin方案
  • fixed 加 margin 方案
  • display:table 方案
  • 行內元素line-height方案
  • flex 彈性佈局方案
  • transform 未知元素寬高解決方案
absolute加margin方案
div{
        position: absolute;
        width: 100px;
        height: 100px;
        left: 50%;
        top: 50%:
        margin-top: -50px;
        margin-left: -50px;
    }
fixed 加 margin 方案
div{
        position: fixed;
        width: 100px;
        height: 100px;
        top: 0;
        right:0;
        left: 0;
        bottom: 0;
        margin: auto;
    }
display:table 方案
div{
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        width: 100px;
        height: 100px;
    }
行內元素line-height方案
div{
        text-align: center;
        line-height: 100px;
    }
flex 彈性佈局方案
div{
        display: flex;
        align-items: center;
        justify-content:center
    }
transform 未知元素寬高解決方案
div{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

關於JS每日一題

JS每日一題能夠當作是一個語音答題社區
天天利用碎片時間採用60秒內的語音形式來完成當天的考題
羣主在第二天0點推送當天的參考答案佈局

  • 注 毫不僅限於完成當天任務,更可能是查漏補缺,學習羣內其它同窗優秀的答題思路

搜索微信公衆號:JS每日一題學習

相關文章
相關標籤/搜索