2

请,有人可以解释为什么我的经典 PHP 表只在 Chrome 中显示正确,但在 Firefox 或 IE 中表的内容超出了<div>?在 Chrome 中显示时在桌面上正确生效的所有内容style.css,但在 Firefox 或 IE 中没有反应。我的桌子:

<?php
include('db.php');
$sqlget="SELECT * FROM table ORDER BY timestamp_oglas DESC";
$sqldata= mysql_query($sqlget);
echo"<table>";
while ($row=mysql_fetch_array($sqldata)) {
echo "<tr><td>";
echo"<b><font color='#e73535'>".$row['heading']."</font></b>";
echo "<br/>";
echo $row['text'];
echo "<br/>";
echo "<img src=\"download.php?id=".$row['id']."\"><br />\n";
echo "<div style='text-align:right'><font size='1px'>".$row['timestamp']."     </font></div>";
echo '<br />';
echo "</td></tr>";
}
echo"</table>";?>

我的.css

table{width:95%;margin-left:auto; margin-right:auto;margin-top:25px;}

屏幕截图(铬):

http://img708.imageshack.us/img708/9603/r40m.png

截图(火狐):

4

1 回答 1

0

I found the sollution. I added this line table-layout: fixed; in style.css. Now works perfectly all browsers.

于 2013-08-25T13:51:45.023 回答