gpt4 book ai didi

html - 如何将样式限制为仅部分 HTML

转载 作者:太空宇宙 更新时间:2023-11-03 20:55:29 25 4
gpt4 key购买 nike

考虑:

<style type="text/css">
table
{
border-collapse: collapse;
}

table, td, th
{
border: 1px solid green;
}

th
{
background-color: green;
color: white;
}
</style>

我只想将此应用于 HTML 页面中的单个表格,该页面还有其他表格。我不想对这些表使用这种样式。

我们真的能做到我要求的吗?

最佳答案

使用:

<style type="text/css">
table.myTable
{
border-collapse: collapse;
}

table.myTable, table.myTable td, table.myTable th
{
border: 1px solid green;
}

table.myTable th
{
background-color: green;
color: white;
}
</style>

然后将该表更改为具有如下类属性:

<table class="myTable">

关于html - 如何将样式限制为仅部分 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11035053/

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