我正在使用通过 php 编码的表来形成带有 xml 提要的两列结果,列形式正常,问题是第二列被截断。
这里的例子: http ://www.qrrw.net/b
我的 CSS
td.manu {
background: url("../images/manu_button.fw.png") no-repeat;
height: 87px;
width:478;
font-family:Arial,Helvetica, sans-serif;
color:#309;
font-size:12px;
}
当我使用 chrome web developer 插件时,它显示第二列的宽度不同,但它使用的是同一个类。
下面是我的PHP 代码:
$count = 0;
$max = 2;
foreach($xml->name as $name){
$count++;
echo '<td class="manu">'. $name['name'];'</td>';
if($count >= $max){
//reset counter
$count = 0;
//end and restart
echo '</tr><tr>';
}
}
?>
最终的 HTML
<table border=0 width="800px">
<tr>
<td class="manu">3000 ME</td><td class="manu">Ace</td></tr><tr><td class="manu">Cobra MK IV</td> </tr></table>
谢谢