css水平居中的几种方法

行内元素:text-align: center;

块级元素:margin: 0 auto;

使用定位:position: relative; left: 50%; tranform: translateX(-50%);

使用flex:     display: flex; justify-content: center;

posted @ 2020-06-13 11:30  自行車  阅读(125)  评论(0编辑  收藏  举报