gpt4 book ai didi

php - 交替颜色 HTML 表 PHP

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

我正在尝试让我的 table 更换颜色,但我遇到了一些困难。

 if ($i % 2 == 0)
$color = "grey";
else
$color = "white"; $i++;
$table .= "<tr style=backround-color=$color>";

这是行不通的。我也试过了,但也没用。

$table .= "<tr:nth-child(even) {background: #CCC};  tr:nth-child(odd) {background: #FFF}; >"; 

最佳答案

你拼错了 background 并且你没有在 CSS 中使用 =,你使用 :。我还在您的属性值周围添加了引号,因为这是最佳做法:

$table .= "<tr style='background-color:$color'>";

您问题的最后一行甚至不接近于有效的 HTML 或 CSS。不过看起来有点整洁。

关于php - 交替颜色 HTML 表 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29313122/

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