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