的 CSS 替代品是什么?-6ren"> 的 CSS 替代品是什么?-考虑以下 HTML 片段: Table hello world 如何替换用 CSS? 最佳-6ren">
gpt4 book ai didi

css - 的 CSS 替代品是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 12:06:18 25 4
gpt4 key购买 nike

考虑以下 HTML 片段:

<!DOCTYPE html>
<title>Table</title>
<meta charset="utf-8">

<table border="1" style="width: 800px;">
<col width="0*">
<col>
<col width="0*">
<tr>
<td><div style="background: red; width: 100px; height: 100px;"></div></td>
<td><div style="background: blue; color: white; text-align: center;">hello world</div></td>
<td><div style="background: green; width: 50px; height: 50px;"></div></td>
</tr>
</table>

如何替换<col width="0*">用 CSS?

最佳答案

根据您的示例,您希望单独将 CSS 应用于第一列和最后一列。因此只需将可重用的 CSS 类名称添加到该列并为其定义样式即可。

<col class="columnStyle">
<col>
<col class="columnStyle">

在你的 CSS 文件中:

col.columnStyle {
width: 0px;
/* specify required width here */
}

这将仅将特定宽度应用到那些列而不是中间列。

关于css - <col width ="0*"> 的 CSS 替代品是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29365330/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com