为`echo`ed结果添加空间

时间:2015-09-30 10:13:35

标签: css

这里我有代码,其中php回应了关注者的数量,结果显示在追随者包裹在h2标签下但在行的开头,即在Fo下,我只是想在关注者的中心显示数字,将&nbsp添加到echo mysqli_num_rows($resultfollowers);可以完成工作,但是他们可以选择任意一个单词,而不是键入多个&nbsp

<h2>Followers</h2>
<?php
$checkfollowers = "SELECT * FROM follow_user WHERE user_id='$user_id'";
$resultfollowers = mysqli_query($con,$checkfollowers);
echo mysqli_num_rows($resultfollowers);
?>

1 个答案:

答案 0 :(得分:1)

是。使用CSS设置容器的宽度,并使用text-align: center;将文本居中。

视觉呈现与MySQL或PHP无关。

内联样式示例:

echo sprintf( '<p style="width: 20em; text-align:center;">%s</p>', $resultfollowers );