gpt4 book ai didi

html - 更改表格中的字体颜色

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

我有一个 html 表格,我想设置表格字体的样式,

table,
thead,
th {
color: white;
border: 1px solid black;
}
<table class="table table-bordered">
<thead>
<tr style="background-color:#3173AD;">
<th>Action</th>
<th style="color:white; font-size:10pt;">User Name</th>
<th style="color:white; font-size:10pt;">User Type</th>
<th style="color:white; font-size:10pt;">Department</th>
<th style="color:white; font-size:10pt;">Mobile Number</th>
<th style="color:white; font-size:10pt;" ng-hide="true"></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="data in getdata">
<td>
<a href="#" ng-click="update(data)" class="btn btn-warning active fa fa-edit"></a>
<a href="#" ng-click="delete(data)" class="btn btn-danger active fa fa-remove"></a>
</td>
<td>{{data.Username}}</td>
<td>{{data.usertype}}</td>
<td>{{data.designation}}</td>
<td>{{data.mobilenumber}}</td>
<td ng-hide="true">{{data.userautoid}}</td>
<td ng-hide="true">{{data.profile}}</td>
<td ng-hide="true">{{data.picname}}</td>
<td ng-hide="true">{{data.email}}</td>
<td ng-hide="true">{{data.hod}}</td>
</tr>
</tbody>
</table>

但是th的字体颜色没有变化

下面是我用的,但是改不了颜色

<th style="">User Name</th>

这就是我现在正在做的来解决这个问题

<th style="color:white; font-size:10pt;" ng-hide="true"></th>

这工作正常,但我想使用 css 类

我现在还需要做什么?

最佳答案

你现在的 css 改变了 th 的字体颜色。但它也会改变整个表格或广告区域的字体颜色。

如果您的要求是仅为 th 更改字体颜色,那么我更喜欢以下 css:

table thead th { color: white; font-size:10pt; }

关于html - 更改表格中的字体颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42153218/

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