我想要在bg
中聲明的圖像適合container-fluid
,但它溢出。現場請參見https://www.soundshelter.net/。背景圖像溢出格
我們的目標是讓文字覆蓋圖像的頂部,因此可以將opacity
和blur
應用於圖像,而不會影響文字。
我嘗試過使用overflow:hidden;
,但這被忽略。
編輯:這也存在,如果我刪除背景圖像,並使用background-color
來代替。
<div class="container-fluid">
<div class="bg"></div>
<div class="row hero_header">
<h1>test</h1>
</div>
</div>
CSS
.bg /*this is the background image*/
{
position: absolute;
z-index: -1;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: url("/images/record_wall_orig_two.jpg") 0px 0px;
background-size:cover;
height:100vh;
background-color: black;
-webkit-filter: blur(8px);/Chrome, Safari, Opera/
filter: blur(8px);
}
你有沒有嘗試給bg類添加max-width和max-height屬性? –
我已經@DhavalChheda,但它與移動網站的響應速度(使用Bootstrap) – Franco
這隻需使用bootstrap jumbotron類即可輕鬆實現。那麼你可以將jumbotron css背景設置爲任何東西。 – claudios