선택장애

테이블 비율이 안 맞을 때 (colgroup, th, td) 본문

HTML

테이블 비율이 안 맞을 때 (colgroup, th, td)

yes or yes 2020. 9. 17. 11:35
반응형

width비율을 맞춰도 정상적으로 나오지 않을 때가 있다.

그럴 때 테이블 style에 추가해주자!

 


<table style = "table-layout: auto; width: 100%; table-layout: fixed;" >

   <colgroup>
   <col width="33%" />
   <col width="33%" />
   <col width="33%" />

   </colgroup>

 

   <thead>
   <tr>
   <th>비율이</th>
   <th>맞지를</th>
   <th>않아</th>

   </tr>
   </thead>

 

   <tbody>

   <td>퍼센트를</td>

   <td>맞춰서</td>

   <td>줬는데</td>

   </tbody>

</table>

반응형

'HTML' 카테고리의 다른 글

HTML - onclick으로 alert띄우기  (0) 2022.05.02
HTML - 이미지 띄우기 (img src)  (0) 2022.05.02
HTML - 프레임  (0) 2017.08.14
HTML - 테이블 간단예제  (0) 2017.08.14
HTML - 라디오버튼, 체크박스, select option  (0) 2017.08.14