-1
的我理解爲什麼設置文本對齊屬性權值的問題,將span標籤移出錨標籤區域(溢出)?爲什麼設置文本對齊,以正確的定位標記,移動跨度標籤,它是錨定標記,移出錨標記
HTML文檔
a.btn{
border: 1px solid #00A0D6;
border-radius: 30px;
background-color: #00A0D6;
text-decoration: none;
color: white;
text-align: right;
width: 250px;
height: 20px;
position: relative;
display: inline-block;
margin: auto;
}
.container{
margin: 90px;
}
.top-content{
position: absolute;
text-align: center;
}
.bottom-content{
position: absolute;
top: 100px;
}
<a href="#" class="btn">
<span class="top-content">Buy now</span>
<span class="bottom-content">Sale for $40</span>
</a>
我甚至不能正確居中的跨度標籤的結構。我不懂爲什麼?
是的,它可以工作,但我想要絕對位置的跨度標籤。 – forethought
好@foreforet我更新我的答案 – Anfuca
我知道爲什麼被定位到正確的位置時,我將位置設置爲絕對? – forethought