gpt4 book ai didi

html - 使用 CSS 更改 HTML 表格标题 BG 颜色

转载 作者:行者123 更新时间:2023-11-28 17:40:46 25 4
gpt4 key购买 nike

可以使用 CSS 更改表格标题的背景颜色吗?

我的表格上的标题目前正在使用它们背后的背景,我想将标题的背景设为不同的颜色。如果是这样,CSS 属性是什么?

这是我当前的 CSS

.Table {
margin:0px;padding:0px;
width:100%;
border:1px solid #4c4040;

-moz-border-radius-bottomleft:8px;
-webkit-border-bottom-left-radius:8px;
border-bottom-left-radius:8px;

-moz-border-radius-bottomright:8px;
-webkit-border-bottom-right-radius:8px;
border-bottom-right-radius:8px;

-moz-border-radius-topright:8px;
-webkit-border-top-right-radius:8px;
border-top-right-radius:8px;

-moz-border-radius-topleft:8px;
-webkit-border-top-left-radius:8px;
border-top-left-radius:8px;
}

.Table table{
border-collapse: collapse;
border-spacing: 0;
width:100%;
height:100%;
margin:0px;padding:0px;
}

还有我的 HTML

<div class="Table" >
<table align='center' summary='blank Sum'>
<caption><br>
Please enter the Emails of the people you want to invite.
<br> <br>
</caption>
<tr>
<td>Party ID</td><td>Party Name</td><td>Date</td><td>Sales</td>
<td>blah</td> <td>blah</td> <td>blah</td><td>blah</td>
</tr>
</table>

</div>

最佳答案

快速回答

Have a fiddle!

CSS

table caption { background: #F00; }

较慢的回答

.Table div 似乎是多余的。我会有这样的东西:

Have a fiddle!

HTML

<table summary='blank Sum'>
<caption>
Please enter the Emails of the people you want to invite.
</caption>

<thead>
<tr>
<th>Party ID</th>
<th>Party Name</th>
<th>Date</th>
<th>Sales</th>
</tr>
</thead>

<tbody>
<tr>
<td>Content</td>
<td>Content</td>
<td>Content</td>
<td>Content</td>
</tr>
</tbody>
</table>

CSS

table { 
width: 500px; /* whatever width */
margin: 0 auto; /*center table*/
}

table caption {
padding: 10px;
background: #F00;
}

关于html - 使用 CSS 更改 HTML 表格标题 BG 颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24165644/

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