在页面布局中,用css写元素相对父元素 垂直水平居中 非常常见,下面是总结出的三种方法,其中推荐指数 #1> #2 > #3
·父元素:
position: relative;
·子元素:
#1
position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%);
#2
position: absolute; top: 0; left: 0; bottom: 0; right: 0; margin: auto;
#3
position: absolute; top: 50%; left: 50%; margin-top:-(高度/2)px; margin-left:-(宽度/2)px;
點擊查看更多內容
4人點贊
評論
評論
共同學習,寫下你的評論
評論加載中...
作者其他優質文章
正在加載中
感謝您的支持,我會繼續努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦