我想這兩個中心的按鈕和文本垂直,但文本作爲照片垂直對齊文本和按鈕
看到的是比其他人低。如果我刪除按鈕,文本應該中心,但如果我離開的按鈕,文本回落(我多麼希望它)。
.song {
/*DivButtonTitle*/
margin-bottom: 3px;
color: #551A8B;
font-size: 35px;
font-family: 'flat';
height: 80px;
border-top: solid 1px #551A8B;
border-bottom: solid 1px #551A8B;
width: 100%;
line-height: 80px;
padding: 0px;
}
<div class="song">
<button class="start" id="1" name="Gentleman-GUE/01._T_Apposto.mp3" onclick="togglePlay(this.id, this.name)"></button>
<button class="restart" onclick="toggleRestart()"></button>
<a>T'Apposto</a>
</div>
它的工作很好,我可以在哪裏找到一些有關flexbox的幫助/參考?我從來沒有聽說過。 – MONS7ER
[這](https://css-tricks.com/snippets/css/a-guide-to-flexbox/)是一個很好的教程,請注意,它不完全支持IE瀏覽器<11 – Daniel