我有一个网页上有问题。我希望用户能够使用7英寸Android平板电脑(使用Chrome)来回答问题。有些人会想要缩放。有些人不会。
当用户放大或缩小时,如何让div容器调整大小(将文本包裹在屏幕边框内)?我试过这个:
.resizcontainer {
width: 90%;
background: #CEE;
margin: 0 auto; /* the auto value on the sides, */
}
代码顶部如下:
<body>
<div class="resizcontainer" style="border: thin black solid">
<div class="header">
<h2>Risk Assessment Test</h2>
</div>
<div class="content">
我不确定这是否重要,但桌面上的Chrome可以正常工作。容器调整得很好。或者是因为这是一个形式???