在css中對元素進(jìn)行水平居中是非常簡單的,然而使元素垂直居中就不是一件簡單的事情了,多年以來,垂直居中已經(jīng)成為了CSS領(lǐng)域的圣杯,因為它是極其常見的需求,但是在實踐中卻不是一件簡單的事情。下面我會簡單介紹水平居中,并著重討論垂直居中。

 

第一部分:水平居中

  1.實現(xiàn)行內(nèi)元素的居中。方法:在行內(nèi)元素外面的塊元素的樣式中添加:text-align:center;

平面設(shè)計培訓(xùn),網(wǎng)頁設(shè)計培訓(xùn),美工培訓(xùn),游戲開發(fā),動畫培訓(xùn)

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>Document</title>     <style>         div{text-align: center;}         img{width: 200px;height: 200px;border: thin solid red;}     </style> </head> <body>     <div>         <img src="pic.png">     </div> </body> </html>

平面設(shè)計培訓(xùn),網(wǎng)頁設(shè)計培訓(xùn),美工培訓(xùn),游戲開發(fā),動畫培訓(xùn)

網(wǎng)友評論