說我想在我的頁面上有幾個div,並且背景中有圖像(如:http://www.ubudhanginggardens.com/)。我知道如何設置我的div的大小,但問題是,如果我使得瀏覽器更小,背景圖像保持不變...我想用網頁瀏覽器向上/向下縮放背景圖像。調整div和背景圖像的大小以適合使用CSS的頁面
CSS
body, html {
height: 100%;
width: 100%;
margin: 0px;
}
#container1 {
float: left;
height: 100%;
width: 50%;
background-image: url(../img/1.png);
}
#container2 {
float: left;
height: 100%;
width: 50%;
background-image: url(../img/2.png);
}
假設CSS3是一個選項,你可以使用['background-size'](http://www.w3schools.com/cssref/css3_pr_background-size.asp) – hexblot 2013-05-02 15:09:53
http://stackoverflow.com/問題/ 13296529/css-how-to-make-responsive-images – abracassabra 2013-05-02 15:17:57