詳解 CSS 居中佈局技巧

水平居中元素: 方式一:CSS3 transform .parent {    position: relative; } .child {    position: absolute;    left: 50%:    transform: translateX(-50%); } 方式二:flex 佈局 .parent {    display: flex;    justify-content
相關文章
相關標籤/搜索