gpt4 book ai didi

php - 使用 CSS 定位具有 ID 的表内的特定类 - 更改 ROW 背景

转载 作者:可可西里 更新时间:2023-11-01 00:40:54 24 4
gpt4 key购买 nike

我有一个看起来像这样的表:

<table class="table table-striped table-hover table-responsive" id="commenttable">
<thead>
<th>Status</th>
<th>Subject</th>
<th>Message</th>
<th>Tech</th>
<th>Emailed?</th>
<th>Date/Time</th>
</thead>
<tbody>
<?php
foreach($commresult as $row)
{
if($row['commentPrivate'] == 'yes'){
echo "<tr class='private'>";
}
else{
echo "<tr>";
}
echo "<td>" . ucwords($row['commentType']) . "</td>";
echo "<td>" . ucwords($row['commentSubject']) . "</a></td>";
echo "<td>" . $row['commentMessage'] . "</td>";
echo "<td>" . ucwords($row['commentBy']) . "</td>";
echo "<td>" . ucwords($row['commentEmailComm']) . "</td>";
echo "<td>" . $row['commentDate'] . "</td>";
echo "</tr>";
}
?>
</tbody>

我想做的是 if $row['commentPrivate'] == 'yes'我想将该行的背景颜色更改为红色。

我试过只使用 <tr bgcolor="#ff7f7f">这没有用。所以现在我只是想将“私有(private)”类添加到该行并使用 CSS 定位它,我认为我失败得很惨。

这是CSS:

.private {
background-color: #ff7f7f;
}

我也试过:

#commenttable tbody .private {
background-color: #ff7f7f;
}

感谢任何帮助。

最佳答案

#commenttable .private {
background-color: #ff7f7f !important;
}

关于php - 使用 CSS 定位具有 ID 的表内的特定类 - 更改 ROW 背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38194718/

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