看看下面的代碼,看看我的問題。爲什麼我的div與平板電腦上的桌子混淆了?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<body>
<div style='width:100%; background:#CCCCCC; padding:0px; margin:0px; margin-bottom:20px; border:1px solid #CCC;'>
<div style='float:left'>
<a href='#' title='CSS TEST'><span style='font-size:30px;'>TEST for CSS DIV</span></a>
</div>
<div style='float:right'>
Stuff on the right
</div>
<div style='clear:both;'></div>
</div>
<table cellspacing='0' cellpadding='2' align='center' width='1200' border='1'>
<tr>
<td> COL1 </td>
<td> COL3 </td>
</tr>
</table>
</body>
</html>
如果在平板電腦上查看,上述操作會將我的div從100%下降。但在PC上運行良好。
如果我刪除該表中,DIV跨越100%
任何幫助,將不勝感激。
你可以看到這個代碼住在http://zeissimages.com/test.html
也只如果刪除表定義它工作正常在平板電腦上。
必須是一些CSS的東西,我們不能看到這裏。你可以把你的代碼放在一個php文件之外並重現這個問題嗎? –
@clrockwell我編輯了帖子並添加了實際的代碼和鏈接,以便在行動中看到它 – user1970839