对于你们中的一些人来说,这可能是一个非常简单的问题。但我想知道如何以聪明的方式放置 div 。这是我想要的结果
所以基本上用户搜索 POI,然后我在 php 上的数据库中选择它,然后我必须显示图像中的结果。
很通用,如何将 div 放置在正确的位置等。
谢谢
您可以使用一个divs
或tables
两个。取决于您希望如何构建数据。
编辑:添加标记
<style type="text/css">
<!--
.div-block {
width:500px;
height:auto;
overflow:hidden;
clear:both
}
-->
</style>
<div class="div-block">
<table width="480" border="0" cellspacing="0" cellpadding="0">
<tr>
<th scope="col" colspan="4">Information</th>
</tr>
<tr>
<Td><strong>Address</strong></Td>
<td>(info)</td>
<Td><strong>Telephone</strong></Td>
<td>(info)</td>
</tr>
<tr>
<td><strong>Address 2</strong></td>
<td>(info)</td>
<td><strong>Mobile</strong></td>
<td>(info0)</td>
</tr>
<Tr>
<th scope="col" colspan="4">Details</th>
</Tr>
<Tr>
<td>Site Web</td>
<td>(info)</td>
<td>Hour</td>
<td>(info)</td>
</Tr>
<Tr>
<td colspan="2">Mail</td>
<td colspan="2">(info)</td>
</Tr>
</table>
</div>
<!-- activity -->