我有这个代码:
<script>
if ((screen.width<=700) && (screen.height<=1200))
{
document.getElementById("Table").style.fontSize = "64px";
}
else
{
document.getElementById("Table").style.fontSize = "40px";
}
</script>
<body>
<div id="Table">
<center>
<table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" height="60" width="100%">
<tr>
<td align="center" valign="center"><a href="https://www.google.com">Hello</a> </td>
</tr>
</table>
</center>
</div>
</body>`
我想更改 div 内所有内容的字体大小如果这不可能,那么请告诉我如何仅更改表格的字体大小。
谢谢