2017-02-06 63 views
1

我有一個問題無法解決。我想刪除my site中其他兩個小部件之間的行,並集中其他2個聯繫小部件。如何做到這一點?來自那個小部件,我想要刪除的CSS是:如何刪除小部件和中心其他小部件之間的線?

.footer-branding { 
    display: -webkit-flex; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-justify-content: center; 
    justify-content: center; 
    -webkit-align-items: center; 
    align-items: center;  
    width: 30%; 
    float: left; 
    text-align: center; 
    padding: 30px 30px 15px 15px; 
} 

圖片顯示哪一行我想刪除。

enter image description here

回答

1

只是添加一些CSS爲:

.footer-branding { 
    width:0; 
    padding:0; 
} 
.footer-contact { 
    broder-left:0; 
    margin:0 auto; 
} 
+0

謝謝,這解決了該問題。 – Dora

+0

很高興幫助你:) –

相關問題