gpt4 book ai didi

php - 如何设置选择 MySQL 数据的 td 样式

转载 作者:行者123 更新时间:2023-11-29 11:05:24 24 4
gpt4 key购买 nike

我似乎无法弄清楚如何在以下代码中设置 td 的样式。

我希望匹配详细信息向右对齐。通常我会直接插入,但这似乎不起作用。

我还想将客队行加粗。

有什么想法吗?

干杯

<h3>SEPTEMBER 2017</h3>
<table><?php $sql = "SELECT * FROM `results` WHERE `year`='2017' AND `Division`='AA1' AND `month`='September'";

$result = $conn ->query($sql);
if ($result-> num_rows > 0) {
while($row = $result -> fetch_assoc()) {
echo "<tr><td>" . $row["day"] . ", " . $row["date"] . " " . $row["month"] . "</td> <td>" . $row["awayteam"] . "</td> <td>" . $row["homescore"] . " - " . $row["awayscore"] . "</td> <td>" . $row["venue"] . "</td> <td>ESFA League</td><td>Match details</td></tr><br>";
}

"</table>";
} else {
echo "No games listed for this month";
}
?></table>

最佳答案

要设置显示数据的样式,您需要应用<style>中声明的CSS代码。标签。

<style>
.table-boarderd{
border: 1px solid black;
text-align: left;
}
.pull-right{
text-align: right;
}
.bold{
font-weight: bold;
}
</style>

<h3>SEPTEMBER 2017</h3>
<table class="table-boarderd">
<?php
$sql = "SELECT * FROM `results` WHERE `year`='2017' AND `Division`='AA1' AND `month`='September'";
$result = $conn ->query($sql);
?>

<?php
if ($result-> num_rows > 0) {
while($row = $result -> fetch_assoc()){ ?>
<tr>
<td><?=$row["day"]?></td>
<td><?=$row["date"]?></td>
<td><?=$row["month"]?></td>
<td class="pull-right bold"><?=$row["awayteam"]?></td>
<td><?=$row["homescore"]?>-<strong><?=$row["awayscore"]?></strong></td>
<td><?=$row["venue"]?></td>
<td>ESFA League</td>
<td>Match details</td>
</tr><br/>
<?php } ?>
</table>

<?php }

else {
echo "No games listed for this month";
}

?>

由于我在表格awayteam单元格中使用了自定义CSS,因此您可以在任何地方使用

关于php - 如何设置选择 MySQL 数据的 td 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41485102/

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