blob: 379857235b92bfd6a1296fb8194712bdb5f7853a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!DOCTYPE html>
<style>
table {
table-layout: fixed;
border: 1px solid black;
width: 300px;
}
td {
background: yellow;
border: 1px solid purple;
}
</style>
<table>
<colgroup>
<col>
<col>
</colgroup>
<colgroup>
<col>
<col>
</colgroup>
<tbody>
<td>One</td>
</tbody>
</table>
<script>
var t = document.querySelector("table");
// Flush layout
var width = t.offsetWidth;
// Remove the first col
document.querySelector("colgroup").remove();
</script>
|