-1
我設計了一個使用bootstrap的網頁,我使用jumbotron類作爲登錄窗體,我需要使該jumbotron透明,以便背景圖像也可見,任何人都可以請建議這個?Bootstrap,jsp,servlet,javascript
我設計了一個使用bootstrap的網頁,我使用jumbotron類作爲登錄窗體,我需要使該jumbotron透明,以便背景圖像也可見,任何人都可以請建議這個?Bootstrap,jsp,servlet,javascript
這很簡單。假設你的HTML被
<div class="cover">
<div class="jumbotron">
<h1>hello you</h1>
</div>
</div>
現在,添加一些CSS到你的代碼
.cover{
background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/times-square-perspective.jpg');
}
.jumbotron{
opacity:0.8;
}
你有一個背景圖像添加到超大屏幕的父母和減少的超大屏幕類的不透明度,如圖以上,無論你喜歡什麼程度。