<body> <div> <!--背景圖片--> <div id="web_bg" style="background-image: url(./img/bg.jpg);"></div> <!--其他代碼 ... --> </div> </body>
以上是需求代碼
以下是實現css樣式代碼
#web_bg{ position:fixed; top: 0; left: 0; width:100%; height:100%; min-width: 1000px; z-index:-10; zoom: 1; background-color: #fff; background-repeat: no-repeat; background-size: cover; -webkit-background-size: cover; -o-background-size: cover; background-position: center 0; }
通過以上操作,我們可以實現將一張圖片作為網頁背景,且不會因為瀏覽器的尺寸導致留白和重復