我試圖用小照片覆蓋整個頁面,但是我發現我不能讓他們在頁面中留下一些左右邊距。BOOTSTRAP CSS照片牆覆蓋頁面
我沒有使用JS做這件事,只是CSS和HTML:
<div class="container-fluid" id="wrapper">
<div id="home-decore">
<img/>
<img/>
<img/>
<img/>
<img/>
<img/>
<img/>
<img/>
<img/>
<img/>
<img/>
etc ..
</div>
</div>
#wrapper{
background:red;
padding-top:5%;
min-height: 88%;
height: auto !important;
height: 88%;
}
#home-decore{
margin:0;
padding-top:60px;
left:0;
top:0;
position:realtive;
min-height: 100%;
height: auto !important;
height: 100%;
background:#000;
}
#home-decore img{
border-radius:2px;
border:0.3% solid white;
opacity:0.6;
width: 3.3333%;
overflow: hidden;
}
#home-decore img:hover{
opacity:1;
}
什麼,我想是適合所有的頁面權:0;頂部:0;底部:0;左: 0;
所以你只是試圖將圖像縮放到屏幕,以便您指定的數字是否填充背景或僅填充儘可能多的圖片? – TMan
第一個,但我想知道有多少照片和多少寬度適合所有:P,我不想留下邊緣(身體邊際)在右側,因爲你可以看到,在左側他們完全適合 – sbaaaang