html整個網(wǎng)頁居中 在網(wǎng)頁設(shè)計中怎么讓背景圖片水平居中?
在網(wǎng)頁設(shè)計中怎么讓背景圖片水平居中?CSS使網(wǎng)頁背景圖片居中的三種方法。1、第一種:用像素設(shè)定,很多都用這種,但是也是最麻煩的:<div style="width:800pxheight:600p
在網(wǎng)頁設(shè)計中怎么讓背景圖片水平居中?
CSS使網(wǎng)頁背景圖片居中的三種方法。1、第一種:用像素設(shè)定,很多都用這種,但是也是最麻煩的:<div style="width:800pxheight:600pxbackground:url(圖片地址) no-repeat 250px 270pxborder:1px solid #cccccc"></div> 2、第二種:用50%設(shè)定,很方便。<div style="width:800pxheight:600pxbackground:url(圖片地址) no-repeat 50% 50%border:1px solid #cccccc"></div> 3、第三種:用center設(shè)定(注:第2個center可以省略,因為默認就是center)。<div style="width:800pxheight:600pxbackground:url(圖片地址) no-repeat center centerborder:1px solid #cccccc"></div>