2014-02-05 67 views
0

我在自舉上工作,但不確定是否正確使用列引導組件上的填充

我似乎得不到邊距和填充正確。

請參考圖像的下方和JS Fiddle

enter image description here

<div class="row"> 
       <!-- MAIN LEFT CONTENT! --> 
       <div class="col-lg-9"> 

        <div class="panel panel-default"> 
         <div class="panel-body"> 
          <div class="alert alert-info"> 
           <p><span>Pending approval</span>.Your profile is bring approved. This means others can't search for you just yet.</p> 
          </div> 
           <div class="col-lg-5 col-sm-4 col-xs-5 hot-not"> 
           <div class="row"> 
            <div class="thumbnail"> 

回答

0

規則.col-xs-5(線793)被固定寬度:

.col-xs-5 { 
    width: 41.66666666666667%; 
} 

將其設置爲50%:

.col-xs-5 { 
    width: 50%; 
}