-1

对于你们中的一些人来说,这可能是一个非常简单的问题。但我想知道如何以聪明的方式放置 div 。这是我想要的结果 在此处输入图像描述

所以基本上用户搜索 POI,然后我在 php 上的数据库中选择它,然后我必须显示图像中的结果。

很通用,如何将 div 放置在正确的位置等。

谢谢

4

1 回答 1

1

您可以使用一个divstables两个。取决于您希望如何构建数据。

编辑:添加标记

<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 -->
于 2011-05-18T15:49:22.063 回答