我正在製作一個網站,但我有一個問題。每當我預覽它時,我的背景圖像都會比屏幕大。Dreamweaver-背景圖像調整大小
HTML:
<div class="image">
<img src="images/background.jpg" alt="">
</div>
CSS:
.image {
position: absolute;
margin-left: -50px;
margin-top: -25px;
}
我的圖像大小爲1920×1200
編輯: 我做了這個代碼:
html {
background: url(images/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
難道它不是浮在屏幕之外的div本身嗎?否則,只需在'.image'上使用'background-size:100%;'。 –
你的意思是背景比div.image容器大嗎?你能舉一個例子嗎?因爲你可能需要定義的是背景大小:100%自動; – jerrylow
你想要什麼解決方案? – ntgCleaner