我想刪除按鈕之間的空格,例如,當我將鼠標懸停在NORMAL按鈕上時,它與HARD按鈕之間沒有空格。我該怎麼做,這些空白空間從哪裏來?刪除HTML中按鈕之間的空格,CSS
body {
margin: 0;
}
#stripe {
background-color: white;
text-align: center;
height: 50px;
color: black;
}
button {
border: none;
background: none;
text-transform: uppercase;
height: 100%;
font-weight: 700;
color: black;
letter-spacing: 1px;
font-size: inherit;
transition: all 0.3s;
outline: none;
}
button:hover {
color: white;
background: black;
}
.selected {
color: white;
background: black;
}
<div id="stripe">
<button class="mode">Easy</button>
<button class="mode">Normal</button>
<button class="mode selected">Hard</button>
</div>
回車如何在這些空白處返回結果? –
@HuyTran它是一個空格字符,並且元素是「內聯塊」,因此它們以內聯方式顯示。就像你會在HTML中或''標籤之間看到'這些單詞之間的空格',或者在單詞/跨度之間有回車符的地方,你會看到元素之間的空格/返回值設置爲'inline'和'內聯塊' –