gpt4 book ai didi

php - 对齐错误 - HTML 表格

转载 作者:行者123 更新时间:2023-11-28 10:27:28 25 4
gpt4 key购买 nike

所以我有这个

screenshot

<?php
$username = $_SESSION['username'];
$sql = mysql_query("SELECT * FROM `users` WHERE `username`='$username'");
while($row = mysql_fetch_array($sql))
{
$cash = $row['cash'];
$exp = $row['exp'];
$maxExp = $row['max_exp'];
$health = $row['health'];
$energy = $row['energy'];
$stanima = $row['stanima'];
$maxStanima = $row['max_stanima'];
$maxEnergy = $row['max_energy'];
?>
<div id="statsBox">
<table width="100%">
<tr>
<td width="2490px" height="20px">
<?php
echo '<b><font color="#00FF00" face="verdana">$'.$row['cash'].'</font></b>';
?>
</td>
<td width="5000px" height="20px">
<center>
<?php
echo '<b><font color="white" face="verdana">'.$energy.'/'.$maxEnergy.'</font></b>';
?>
</center></td>
<td width="2510px" height="20px">
<div class="right">
<?php
echo '<a href="index.php"><b><p class="White">'.$stanima.'/'.$maxStanima.'</p></b> </a>';
}
}
?>
</div>
</td>
</tr>
<div id="statsBox">
<table>
<tr>
<td width="2490px" height="20px">
<?php
echo '<b><font color="#00FF00" face="verdana">'.$health.'/100</font></b>';
?>
</td>
<td width="5000px" height="20px">
<center>
<?php
echo '<b><font color="white" face="verdana">'.$energy.'/'.$maxEnergy.'</font></b>';
?>
</center></td>
<td width="2510px" height="20px">
<div class="right">
<?php
echo '<a href="index.php"><b><p class="White">'.$stanima.'/'.$maxStanima.'</p></b> </a>';
?>
</td></tr>
</table>
</div>
</div>
</div>

我想要将底部的 3 项上移。一切都在 2 个不同的表中。我试过组合表格,但它弄乱了底部中间元素的对齐方式。

现在已经很完美了,但我想知道如何以某种方式降低表格高度以使底部的 3 个元素更靠近顶部?

最佳答案

在第二个表中,您可以添加类并在 css 中指定其高度,或者简单地在第二个表中添加内联 css

<table style="height:25px;">

关于php - 对齐错误 - HTML 表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23668258/

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