您好,登錄后才能下訂單哦!
css中怎么實(shí)現(xiàn)div垂直居中,相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>CSS實(shí)現(xiàn)div居中</title> <style> /*外層div居中*/ #main { position: absolute; /*極為重要*/ background-color: blue; width:400px; height:200px; left:50%; top:50%; margin-left:-200px; margin-top:-100px; border:1px solid #00F; } #content { position: absolute; /*極為重要*/ background-color: yellow; width: 200px; height: 100px; left:50%; top:50%; margin-left:-100px; margin-top:-50px; /*div內(nèi)部文字居中*/ text-align: center; line-height:100px; /*行間距和div寬度相同*/ } </style> <body> <div id="main"> <div id="content"> Sun </div> </div> </body> </html>
看完上述內(nèi)容,你們掌握css中怎么實(shí)現(xiàn)div垂直居中的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。