对于你们中的一些人来说,这可能是一个非常简单的问题。但我想知道如何以聪明的方式放置div。这是我想要的结果
所以基本上用户搜索POI,然后在php上的数据库中选择它,然后我必须在图像中显示结果。
这是非常通用的,如何将div放在正确的位置等。?
感谢
答案 0 :(得分:1)
您可以使用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 -->