我在網頁上有一個表格(下面的代碼),出於某種原因,當我在移動設備上導航到此頁面時,表格的右側似乎被切斷了?我怎樣才能解決這個問題?在移動設備上切斷桌面?
<head>
<meta name="viewport" content="width=1000">
</head>
<center>
<table style="width:80%;"><tr>
<td>
<?php print render($page['content']); ?>
</td>
<td valign="top" style="padding-left:2%; font-size:18px;">
<?php print render($page['highlighted']); ?>
</td>
</tr></table>
</center>
請問這[鏈接](http://stackoverflow.com/questions/23371582/why-is-my-website-cutting-off-on-mobile-devices)有幫助嗎?也許嘗試將你的'meta'標籤改爲' –
嘗試使用bootstrap並使用.table-responsive類。 https://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_table-responsive&stacked=h – SGventra