Search
 
SCRIPT & CODE EXAMPLE
 

HTML

CSS Setting Table Column Width

<table border="1" width="100%">
	<col style="width:40%">
	<col style="width:30%">
	<col style="width:30%">
	<thead>
	<tr>
		<th>Fruits</th>
		<th>Vitamin A</th>
		<th>Vitamin C</th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<th>Apples</th>
		<td>98 ui</td>
		<td>8.4 mg</td>
	</tr>
	<tr>
		<th>Oranges</th>
		<td>295 ui</td>
		<td>69.7 mg</td>
	</tr>
	<tr>
		<th>Bananas</th>
		<td>76 ui</td>
		<td>10.3 mg</td>
	</tr>
	</tbody>
</table>
Comment

table column width

<!--Simple table with column width-->
<table>
    <colgroup>
       <col span="1" style="width: 15%;">
       <col span="1" style="width: 70%;">
       <col span="1" style="width: 15%;">
    </colgroup>
	<!--Put <thead> and <tr>'s here-->
    <tbody>
       <td>From</td>
       <td>Subject</td>
       <td>Date</td>
    </tbody>
</table>
<!--This code ensures that the columns span one column each (span attribute)-->
<!--Width attribute can be pixel too.-->
Comment

auto column width table html

td.fitwidth {
    width: 1px;
    white-space: nowrap;
}
Comment

auto column width table html

<tr>
    <td class="fitwidth">ID</td>
    <td>Description</td>
    <td class="fitwidth">Status</td>
    <td>Notes</td>
</tr>
Comment

change table column width css

table {
  border: 1px solid black;
  table-layout: fixed;
  width: 200px;
}

th,
td {
  border: 1px solid black;
  width: 1000px;
  overflow: hidden;
}
Comment

change table column width css

<table>
  <tr>
    <th>header 1</th>
    <th>header 234567895678657</th>
  </tr>
  <tr>
    <td>data asdfasdfasdfasdfasdf</td>
    <td>data 2</td>
  </tr>
</table>
 Run code snippetHide results
Comment

PREVIOUS NEXT
Code Example
Html :: onclick show div and hide other div 
Html :: jquery ajax add loading 
Html :: bootstrap 4 search box 
Html :: comment text in html 
Html :: html link confirm 
Html :: how to make text uppercase html 
Html :: angular 2 input file change value 
Html :: how to make whatsapp hyperlink 
Html :: how to change font colour in html 
Html :: html player 
Html :: html single quote code 
Html :: tooltip react bootstrap 
Html :: image as banner html 
Html :: javascript how to set a textbox value to nothing 
Html :: greater then less then in html text 
Html :: how to show code with html 
Html :: can i use the input tag without the form tag 
Html :: bootstrap starter code 
Html :: how to put image in html in right side 
Html :: link to google icons embed in my website 
Html :: path in html 
Html :: how to link html pages in django 
Html :: google no translate meta tag 
Html :: filter vhtml vue 
Html :: bootrsrap 
Html :: change button color in html 
Html :: syntax is being placed in my textarea in html 
Html :: typo3 headerdata 
Html :: bootstrap form input select 
Html :: 1x1 transparent image base 64 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =