我在数据库的表格中创建了一个描述(" specs")。并加入我的php文件。
<h5><?php echo $row["specs"];?></h5>
如何将文字对齐如下:
Bold: Details
Bold: Details
Bold: Details
Bold: Details
Bold: Details
答案 0 :(得分:0)
可能html表元素最适合这个:
<table>
<?php foreach($rows as $row) { ?>
<tr>
<td><?php echo $row["the field in Bold"];?></td>
<td><?php echo $row["Details field"];?></td>
</tr>
<?php } ?>
</table>
在CSS中:
table td:first-child{
font-weight: bold;
}
就像这样。在你的问题中,元素是这样对齐的:
table td:first-child {
font-weight: bold;
}
&#13;
<table>
<tr>
<td>bold:</td>
<td>description</td>
</tr>
<tr>
<td>bold:</td>
<td>description</td>
</tr>
<tr>
<td>bold:</td>
<td>description</td>
</tr>
<tr>
<td>bold:</td>
<td>description</td>
</tr>
</table>
&#13;
答案 1 :(得分:-1)
试试这段代码:
<?php
foreach($rows as $row) {
echo "\n<h5>" . $row["specs"] . "</h5>";
}
?>