1
我創建了一個網站項目,並使用自舉3 - 我在與一些地方的幾個問題:自舉3(CSS)幾個小問題
網站在大亮點:http://2.ii.gl/9qDvim.png
小窗口中的網站:http://1.ii.gl/VA7OgN.png
1)背景圖像:當我使窗口變小時,圖像調整大小到某一點然後停止。在移動設備中 - 隱藏着大量的溢出。有什麼方法根據窗口大小來調整它的大小?
我當前的CSS代碼:
#wrap {
min-height: 100%;
height: auto;
/* Negative indent footer by its height */
margin: 0 auto -50px;
/* Pad bottom by footer height */
padding: 0 0 50px;
background:url("/images/bgg5.jpg") no-repeat;
background-size: cover;
}
2)輸入域 - 它是在調整中的瀏覽器小太多 - 有沒有一種方法,以防止它調整,除非窗口寬度大於長度較小輸入字段?
這是怎麼看起來像在移動:http://4.ii.gl/9oQ7Hp.png
我1個輸入域代碼:
<div class="form-group">
<label for="inputID">Input</label>
<div class="row">
<div class="col-xs-4">
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-user"></span></span>
<input type="text" class="form-control" placeholder="Enter Input" name="login">
</div>
</div>
</div>
</div>
有什麼辦法根據瀏覽器,使整個圖像大小調整 - 即使沒有保持量 - 我看到一些網站的背景圖片是即使在非常小的屏幕 –
完全可觀看@John_Nil好了,如果你不不關心比例,將其設置爲「背景大小:100%100%」。我不會這樣做,因爲拉伸圖像是sooooo醜陋:( –