是否可以在'PHP echo'之前使用html中心标记来集中PHP回显?我试图将一个PHP回声集中在一个html表中,对齐中心和html中心似乎没有对php回声产生预期效果......?
示例:
<td width="80"><label for="Usage"><center><?php echo $sum4 > 0 || $sum4!==null ? $sum4 : "0"; ?></center></label></td>
感谢。
答案 0 :(得分:4)
Center
is a very old and deprecated tag.
尝试使用内联CSS:
<td width='80' style='text-align:center;'>
<?php echo ($sum4 > 0 || $sum4! == null) ? $sum4 : '0'; ?>
</td>
或将CSS添加到样式表:
目:
<style type='text/css'>
.center {
text-align:center;
}
</style>
体:
<td width='80' class='center'>
<?php echo ($sum4 > 0 || $sum4! == null) ? $sum4 : '0'; ?>
</td>