2016-08-20 112 views

回答

3

添加float:right到类.teambanner并取出底部边缘

.teambanner { 
    /* margin-bottom: 70px; */ 
    float: right; 
} 
1

新增CSS

.teambanner{ 
    display: flex; 
    margin: 0; 
    justify-content: flex-end; 
} 

OR

.teambanner{ 
    float: right; 
    margin: 0; 
} 
1

添加这个CSS

.team_1_h2 { 
    margin-right: 10px; 
    float: left; 
    line-height: 0px; 
} 

.team_2_h2 { 
    margin-right: 10px; 
    float: left; 
    line-height: 0px; 
} 
1
.team_2_logo { 
    /* float: right; comment this float out!*/ 
    height: 40px; 
}