2017-12-29 40 views

답변

0

당신은 >의 너무 < 테이블을 사용하지만, 지금까지의 내가 .col-auto 고려할 때 테이블 컬럼의 기본 동작의 종류 수 있습니다.

아래 예를 살펴보십시오. 전체 화면 (md 중단 점 위)에서 볼 때 모든 열은 .col-auto으로 동작합니다. 그러나 중단 점 아래에 지정된 너비 (예에서 두 번째 열, width: 100%;)가있는 첫 번째 열은 다른 모든 사용 가능한 공간을 차지합니다.

또 다른 사용 예로서, 부트 스트랩 문서는 form fields의 컨텍스트에서 .col-auto을 언급합니다.

<table class="table"> 
 
    <thead> 
 
    <tr> 
 
     <th scope="col" class="col-auto">#</th> 
 
     <th scope="col" class="col-md-auto">First</th> 
 
     <th scope="col" class="col-md-auto">Last</th> 
 
     <th scope="col" class="col-md-auto">Handle</th> 
 
    </tr> 
 
    </thead> 
 
    <tbody> 
 
    <tr> 
 
     <th scope="row">1</th> 
 
     <td>Mark</td> 
 
     <td>Otto</td> 
 
     <td>@mdo</td> 
 
    </tr> 
 
    <tr> 
 
     <th scope="row">2</th> 
 
     <td>Jacob</td> 
 
     <td>Thornton</td> 
 
     <td>@fat</td> 
 
    </tr> 
 
    <tr> 
 
     <th scope="row">3</th> 
 
     <td>Larry</td> 
 
     <td>the Bird</td> 
 
     <td>@twitter</td> 
 
    </tr> 
 
    </tbody> 
 
</table> 
 

 
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" rel="stylesheet"/>