2016-11-14 74 views

回答

1

刪除高度

.feedback-box .client { 
    margin-top: 30px; 
/* height: 73px; */ 
    position: relative; 
} 

刪除浮動, 補充保證金:0汽車;

.feedback-box .client-image { 
    /* float: right; */ 
    width: 150px; 
    height: 100px; 
    padding: 5px; 
    border: 4px solid #ececec; 
    margin: 0 auto; 
} 
1

刪除float並添加margin: 0 auto.client-image類:

.feedback-box .client-image { 
    /* float: right; Remove this or float:none */ 
    width: 150px; 
    height: 100px; 
    padding: 5px; 
    border: 4px solid #ececec; 
    margin: 0 auto; 
} 

,並添加margin-bottom.feedback-box .client

.feedback-box .client { 
    margin-top: 30px; 
    height: 73px; 
    position: relative; 
    margin-bottom: 20px; 
}