成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

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>