Thẻ colgroup cho phép chúng ta điều chỉnh độ rộng của table (ok)

<!DOCTYPE html>
<title>Movie Management</title>
<link href="../css/main.css" rel="stylesheet" type="text/css" media="all">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css">
</head>
<body>
<div class="heading">Movies Management</div>
	<div class="box_table">
			<table>
				<colgroup>
					<col width="5%">
					<col width="10%">
					<col width="15%">
					<col width="10%">
					<col width="10%">
					<col width="10%">
					<col width="10%">
					<col width="10%">
					<col width="10%">
					<col width="10%">
				</colgroup>
				<thead>
				<tr>
					<th>ID</th>
					<th>Created</th>
					<th>Title</th>
					<th>Duration</th>
					<th>Language</th>
					<th>Country</th>
					<th>Category</th>
					<th>Calendar Edit</th>
					<th>Edit</th>
					<th>Delete</th>
				</tr>
			</thead>
			</table>
	</div>
</body>
</html>

C:\xampp\htdocs\test\css\main.css

Last updated

Was this helpful?