在while循环中对齐文本

时间:2013-12-16 12:15:31

标签: php html css

如何对齐while循环中生成的文本

示例:

while ($row = mysql_fetch_array($query)){


echo "<strong>E1:</strong>".$row['Ex1']."<br>";
echo "<strong>E2:</strong> ".$row['Ex2']."<br>";
echo "<strong>E3:</strong> ".$row['Ex3']."<br>";
echo "<strong>E4:</strong> ".$row['Ex4']."<br>";
echo "<strong>E5:</strong> ".$row['Ex5']."<br>";
echo "<strong>E6:</strong> ".$row['Ex6']."<br>";
}

现在对齐不好我想在左边使用E1而在右边对齐结果(Ex1 / 6)

3 个答案:

答案 0 :(得分:1)

echo "<strong style='float:left;'>E1</strong>
      <span style:float:right;'>.$row['Ex1']."</span><br>";`

答案 1 :(得分:1)

PHP是服务器脚本,因此,只需回显,无论你需要什么标记标记......

 echo "<span style='float:left'><strong>E1:</strong>
</span><span style='float:right'>".$row['Ex1']."</span><br>";

答案 2 :(得分:0)

试试这个 在内联中添加样式

echo "<span style='float:left'><strong>E1:</strong>
</span><span style='float:right'>".$row['Ex1']."</span><br>";