0
我正在嘗試使按鈕在調整窗口大小時隨文本一起移動。我無法弄清楚它爲什麼不起作用,即使它具有與其他ID /類相同的屬性。按鈕不會隨着區塊級別文本移動div
.relative{
position:relative;
width:100%;
}
.absolute-text {
color: white;
position:absolute;
bottom:0;
top: 115px;
width:100%;
text-align:center;
font-family: 'Raleway', sans-serif;
} \t
#fontStyle {
font-weight: 700;
font-size: 48px;
}
#fontStyle2 {
font-size: 25px;
text-decoration: none;
font-weight: 500;
top: 210px;
}
#button {
width: 200px;
height: 46px;
line-height: 46px;
padding: 0px 24px;
display: inline-block;
background-color: #1a75ff;
color: #fff;
font-family: 'Raleway', sans-serif;
font-weight: 600;
text-transform: uppercase;
-webkit-box-shadow: inset 0px -2px rgba(0, 0, 0, 0.22);
box-shadow: inset 0px -2px rgba(0, 0, 0, 0.22);
-webkit-border-radius: 4px;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
top: 335px;
left: 825px;
text-align: center;
}
<header>
<div class="relative">
<img id="headerimage" src="http://i.imgur.com/iiE3pbP.jpg" />
<p class="absolute-text" id="fontStyle">Reliable Web Hosting</p>
<p class="absolute-text" id="fontStyle2" href="contact.html">We offer quality and reliable web hosting at <br> low prices that you'll not want to miss.</p>
<a class="absolute-text" id="button" href="">Order Web Hosting</a>
</div>
</header>
好。我得到了按鈕,但現在,當我調整窗口的大小時,它會略微移動,您可以在這裏看到:https://www.youtube.com/watch?v=wScTTf2unqQ&feature=youtu.be感謝您的幫助至此 – killerwild
您不正確的響應測試..讓我們在brouser中使用F12,並找到按鈕 - >(FF)'響應式設計模式'或(鉻)'切換設計工具欄' –
我同意@OlegBorodko圖像應該是背景圖像的一個div,而不是使用'絕對'。如果沒有絕對的話,你的反應速度會更容易。 – Wes