|
遇到一个在视图中元素显示的顺序问题
视图代码:
HTML复制代码 <div>
<p>Title </p>
<table>
<tr>
<td>A </td><td>B </td><td>C </td><td>D </td>
</tr>
<tr>
<td><?php echo $name ;?></td>
<td><?php echo $attribute ;?></td>
<td><?php echo $address ;?></td>
<td><?php echo $tel; ?></td>
</tr>
</tabel>
</br>
<a href = "http://xxx">继续 </a>
<a href = "http://xxx">返回 </a>
</div> 复制代码
后面两个链接想放在表格下面,可实际总是出现在表格上面,是什么原因,该怎么弄呢? |
|