2012-08-07 58 views

回答

0

Bootstrap會自動在身體周圍創建一個20px的填充。爲了消除這一點,就像移動導航欄所做的那樣,在引導響應文件中實現一個新類:

@media (max-width: 767px) { 
body {  // The code that creates a padding around the body in mobile 
    padding-right: 20px; 
    padding-left: 20px; 
} 
.google-adsense, // Create a new class for your ad with -20 margins (The navbar 
        // is already implemented like this so just add new class name) 
.navbar-fixed-top, 
.navbar-fixed-bottom { 
    margin-right: -20px; 
    margin-left: -20px; 
}