使用CSS 精確居中背景影像
為了居中對齊背景影像,使用了以下CSS 程式碼:
body{ background-position:center; background-image:url(../images/images2.jpg) no-repeat; }
background-image: url(path-to-file/img.jpg); background-repeat:no-repeat; background-position: center center;
background-position: 0 100px; /*use a pixel value that will center it*/
body{ background-repeat:no-repeat; background-position: center center; background-image:url(../images/images2.jpg); color:#FFF; font-family:Arial, Helvetica, sans-serif; min-height:100%; }
以上是如何使用 CSS 使背景圖片精確居中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!