我试图在 html 代码中隐藏一些 col。添加了使用MDN colgroup和col,我正在玩cols的样式。
带有内容的<td>
文本“可见”在所有浏览器中都可见(好),带有内容的文本“隐藏”在 chrome 中可见(不好)并在 Firefox 和 Edge 中隐藏。(好的)。
我可以重新创建问题的最短代码在这里:
<!doctype html>
<html>
<head>
<title>css example</title>
<style type='text/css'>
col.visible {}
col.hidden { visibility:collapse; }
</style>
</head>
<body>
<table border='1'>
<colgroup>
<col class='visible'>
<col class='hidden'>
<tbody>
<tr>
<td>visible</td>
<td>hidden</td>
</tr>
</tbody>
</colgroup>
</table>
</body>
</html>