2017-09-27 1 views
0

테이블 위의 row에 2 개의 양식 제목을 보여주는 부트 스트랩 페이지가 있습니다. 테이블 상단 왼쪽 상단에 나타나는 2 개의 입력이있는 두 번째 형식은 상위 열 (col-md-8)의 전체 너비를 차지합니다.이 열의 절반 정도만 차지하면됩니다.부트 스트랩 열/격자 크기 조정 문제

이 방법으로 위치를 잡을 수 없으므로 공간을 덜 차지하지만 동시에 제목/표의 왼쪽에 정렬됩니다. 다음은 현재 보이는 방법 (이 데스크톱에서만 사용되므로이 볼 수있는 전체 페이지 옵션을 사용에 확인) :

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" /> 
 

 
<div class="container"> 
 

 
<div class="row"> 
 
    <div class="col-md-8"> 
 
    <h1>Items List</h1> 
 

 
    <br> 
 
    <br> 
 
    <br> 
 
    <br> 
 
    <br> 
 
    <br> 
 
    <br> 
 

 
    <form class="form-horizontal" id="findItems" action="#" method="get" role="form"> 
 
     <input type="hidden" name="action" value="findItems"> 
 
     <table class="table table-bordered"> 
 
     <tr> 
 
      <td><input type="text" class="form-control" name="itemID" id="itemID" placeholder="Shipment ID"></td> 
 
      <td><input type="text" class="form-control datepicker" name="shippingDate" id="shippingDate" data-date-format="dd/mm/yyyy" placeholder="Date Shipped"></td> 
 
      <td class="text-center"> 
 
      <button type="submit" class="btn btn-success">Update All</button> 
 
      </td> 
 
     </tr> 
 
     </table> 
 

 
    </form> 
 

 

 

 
    </div> 
 
    <!-- /.col-md-8--> 
 

 

 
    <div class="col-md-4"> 
 

 
    <div> 
 
     <form class="form-horizontal" id="findMoreItems" action="#" method="get" role="form"> 
 
     <input type="hidden" name="action" value="findMoreItems"> 
 
     <table class="table table-bordered"> 
 
      <tr> 
 
      <td>Shipment ID:</td> 
 
      <td><input type="text" class="form-control" name="shipmentID" id="shipmentID" placeholder="Shipment ID"></td> 
 
      </tr> 
 
      <tr> 
 
      <td>Authority ID:</td> 
 
      <td><input type="text" class="form-control" name="authorityID" id="authorityID" placeholder="Authority ID"></td> 
 
      </tr> 
 
      <tr> 
 
      <td>Ref ID:</td> 
 
      <td><input type="text" class="form-control" name="refID" id="refID" placeholder="Ref ID"></td> 
 
      </tr> 
 
      <tr> 
 
      <td>Serial Number:</td> 
 
      <td><input type="text" class="form-control" name="serialNumber" id="serialNumber" placeholder="Serial #"></td> 
 
      </tr> 
 
      <tr> 
 
      <td colspan="2" class="text-center"> 
 
       <button type="reset" class="btn btn-default">Reset</button> 
 
       <button type="submit" class="btn btn-success">Search</button> 
 
      </td> 
 
      </tr> 
 
     </table> 
 

 
     </form> 
 
    </div> 
 

 
    </div> 
 
    <!-- /.col-md-4--> 
 

 
</div> 
 
<!-- /.row--> 
 

 

 

 

 
<br> 
 

 

 
<div> 
 

 
    <br /> 
 
    <table class="table table-condensed table-striped table-bordered"> 
 
    <thead> 
 
     <th class="text-center" scope="col">Shipment ID</th> 
 
     <th class="text-center" scope="col">Item ID</th> 
 
     <th class="text-center" scope="col">Serial Number</th> 
 
     <th class="text-center" scope="col">Shipped Date</th> 
 
    </thead> 
 
    <tbody> 
 
</tbody> 
 
\t \t \t \t </table> 
 
\t \t 
 
</div> 
 

 
</div><!-- /.container -->

+0

offset 클래스 = "col-md-4 col-md-offset-4"를 사용하여 열이 4이고 4 –

답변

0

당신은 언제나 스페이서 열을 추가 할 수 있습니다. 그래서 ...

<div class="col-md-6"> two table things </div> 
<div class="col-md-2"> empty column for spacing </div> 
<div class="col-md-4"> other table </div> 
관련 문제