“Tabel CSS Memperbaiki Lebar Kolom” Kode Jawaban

CSS Pengaturan Tabel Lebar kolom

<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>
Filthy Fish

Tabel CSS Memperbaiki Lebar Kolom

table {
	table-layout: fixed;
}

td {
	overflow: hidden;
    width: 100px;
}
Julio Polycarpo

Jawaban yang mirip dengan “Tabel CSS Memperbaiki Lebar Kolom”

Pertanyaan yang mirip dengan “Tabel CSS Memperbaiki Lebar Kolom”

Lebih banyak jawaban terkait untuk “Tabel CSS Memperbaiki Lebar Kolom” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya