在網頁設計中,有時我們需要將內部元素居中,這時候就需要使用CSS。下面介紹幾種不同方式實現內部元素居中。
// 方法1: text-align屬性實現水平居中 .parent { text-align: center; } .child { display: inline-block; } // 方法2: margin屬性實現水平居中 .parent { width: 300px; } .child { width: 100px; margin: 0 auto; } // 方法3: display:flex實現水平垂直居中 .parent { display: flex; justify-content: center; align-items: center; } .child {} // 方法4: position屬性實現水平垂直居中 .parent { position: relative; } .child { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
以上四種方法都可以實現內部元素居中,選擇哪種方法取決于具體需求。