我試圖做到這一點樣機2個按鈕......圍繞股利引導
...我來到這裏,我需要把圖像上的這些按鍵2點。我設法把一個按鈕,但第二個不工作。這是第一個按鈕的代碼。
#img_container {
position:relative;
display:block;
text-align:center;
}
.button {
position:absolute;
bottom:50%;
right:50%;
width:200px;
height:50px;
margin:0px -100px -15px 0px;
background-color: rgb(246, 175, 228);
border: none;
box-shadow: 4.5px 7.794px 5px 0px rgba(0, 0, 0, 0.094);;
font-size: 1.3em;
color: white;
text-transform: uppercase;
}
<div id="img_container" class=" "text-center col-lg-12 col-md-12 col-sm-12 col-xs-12">
<img src="img/homepicture.jpg"/>
<button class="button">lazybop</button><br>
<button class="button1">see the products</button>
</div>
然後我試圖使用相同的代碼,而只是降低底層財產的數量到40%,但它仍然在同一個地方。
.button1 {
position:absolute;
bottom:40%;
right:50%;
width:200px;
height:50px;
background-color: rgb(246, 175, 228);
border: none;
box-shadow: 4.5px 7.794px 5px 0px rgba(0, 0, 0, 0.094);;
font-size: 1.3em;
color: white;
text-transform: uppercase;
}
你有'類的附加雙引號=」「文本中心COL-LG-12 COL-MD-12同事sm-12 col-xs-12「' –