因此,我在將一些內容放在我的英雄/ jumbotron圖像下方時遇到了一些問題。 下劃線的東西並不重要!這是對一些jQuery的負載。下面的代碼:定位問題
我想 「我們做什麼」 的超大屏幕圖像
HTML如下內容:
<div class="hero">
<div class="hero-text">
<h1 class="invis-selection">Header Text</h1>
<div id="underline-1"></div>
<div id="underline-2"></div>
<div id="underline-3"></div>
<div id="underline-4"></div>
</div>
<img class="hero-img" src="img/city-night.png" alt="Hero Image" />
</div>
<div class="wwd-main">
<h1>What we do</h1>
</div>
CSS:
.hero{
position: fixed;
width: 100%;
height: 100%;
text-align: center;
color: #fff;
font-family: 'Lato', sans-serif;
}
.hero-text {
position: absolute;
width: 640px;
height: 125px;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.hero-text h1{
position: absolute;
width: 640px;
height: 125px;
font-size: 7.1em;
z-index: 1;
margin-top: -15px;
}
.hero-img {
width: 100%;
height: 100%;
}
.wwd-main {
position: relative;
height: 30%;
background-color: #eeeeee;
z-index: 100;
}
這項工作。有點,它現在不是一個完整的jumbotron圖像。在jumbotron底部有大約15px的空白空間 –
編輯我的答案。現在應該工作。 – user6003859