Firefox不会包装表,但其他浏览器会这样做

时间:2013-10-17 16:12:02

标签: php html

我的页面构建字符串$ BookBody,然后在我的html表格中回显它。应该在屏幕上显示的是一系列书籍封面,价格如下。在5个结果之后,下一个结果将推送到Chrome,Explorer和Safari中的新行,但Firefox不会换行。

$BookBody .= '<table width="10%" border="0" align="left" cellpadding="0">
                <tr>
                   <td width="100" height="163">
                      <a href="index.php?pid=' . $tom . '">
                        <img src="' . $coverimage . '" height="151" width="100"
                      </a>
                   </td>
                </tr>
                <tr>
                  <td width="100" height="16" align="center" valign="middle"                 
                       bgcolor="#590000" >' . $bookprice 
                  .'</td>
                </tr>
              </table>';

---------------------------------------------------------------

<body>

<table width="800" border="0" align="center" cellpadding="8">
  <tr>
    <td align="left" valign="top"><?php echo $BookBody ?></td>
  </tr>
</table>
</body>

0 个答案:

没有答案