我正在處理此頁面,正如您在第二個「輸入」中看到的,H2和圖像之間存在差距,但其他圖像沒有差距。圖像和文字之間的差距
網頁:http://sim.rgmgleague.com/cap/trades.php
我似乎無法找出原因。
我正在處理此頁面,正如您在第二個「輸入」中看到的,H2和圖像之間存在差距,但其他圖像沒有差距。圖像和文字之間的差距
網頁:http://sim.rgmgleague.com/cap/trades.php
我似乎無法找出原因。
添加float:right
到類.teambanner
並取出底部邊緣
.teambanner {
/* margin-bottom: 70px; */
float: right;
}
新增CSS
.teambanner{
display: flex;
margin: 0;
justify-content: flex-end;
}
OR
.teambanner{
float: right;
margin: 0;
}
添加這個CSS
.team_1_h2 {
margin-right: 10px;
float: left;
line-height: 0px;
}
.team_2_h2 {
margin-right: 10px;
float: left;
line-height: 0px;
}
.team_2_logo {
/* float: right; comment this float out!*/
height: 40px;
}
謝謝大家,需要漂浮在.teambanner上的技巧。 – rolomcflurry