我有一个在表列中设置值的代码,现在显示的文本具有黑色,但我想突出显示具有蓝色背景的文本
下面是我当前的 HTML 代码
<body>
<div class="container">
<table class="table table-responsive-sm table-bordered border-dark">
<caption style="caption-side: top;">
<h2 style="color:red">Country wise live updates</h2>
</caption>
<thead>
<tr>
<th scope="col">Country</th>
<th scope="col">Total Affected</th>
<th scope="col">Deaths</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{data.country}}</td>
<td>{{data.total}}</td>
<td>{{data.deaths}}</td>
</tr>
</tbody>
</table>
</div>
</body>
电流输出:
预计仅突出显示文本部分。
我想显示输出,如下所示:
慕标琳琳
弑天下
侃侃尔雅
相关分类