如何使html表的内容与任何屏幕分辨率兼容?

时间:2018-09-24 02:23:36

标签: android html responsive-design android-webview responsive

我有以下带有<table>的html代码,这些代码也将在移动设备中显示并出现问题。如果我在此表中插入了很多内容,则在分辨率较低(屏幕较小)的设备中,该内容不会完全显示(将减少我网站的页脚)。

那么如何根据下面的代码显示我的网站的所有内容?

<html>
<body bgcolor="black">
<table width="100%" height="100%">
  <tr>
    <td align="center" valign="center">
      <br />
      <img width="100" height="100" src="myimage.png"> <br /><br />
      <b><font color="white">My text...</font></b> <br />
      <b><font color="white">My text...<p id="randomize"></p></font></b>
      <b><font color="white">My text...<p id="lbpath"></p></font></b>
      <br />
      <img width="150" height="150" src="myimage2.gif"> <br />
      <center>
        <font color="yellow"><b>
        <p id="label">My text...</p>
        </b></font>
      </center>
      <b><font color="red">My text...</font></b><font color="white">My text...</font></td>
  </tr>
</table>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

需要设置桌子的高度吗?

<table width="100%">

必须正常工作