网页自适应手机屏幕文字大小怎么设

如题所述

第1个回答  2019-10-02
网页的表格设置为百分数width="95%"
,就可以安装分别率适应了!比如下面,无论你点击最小化还是最大化,都能显示全部的表格
<html>
<head>
<meta
http-equiv="Content-Type"
content="text/html;
charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<table
width="95%"
height="407"
border="0"
align="center"
cellpadding="1"
cellspacing="1"
bgcolor="#990000">
<tr>
<td
bgcolor="#CCCCCC">无论你是什么分别率,网页就是全屏的!</td>
</tr>
</table>
</body>
</html>:
相似回答