如何使我的网页中的内容自动调整大小,以便在每个调整大小级别,我可以一次看到网页的所有内容,而无需使用滚动条。还有Bootstrap的方法吗?
答案 0 :(得分:0)
如果您创建此css类并将其添加到所有元素上,它应该可以工作:
CSS:
.height-responsive {
width: auto;
display:block;
height: 100%;
}
HTML:
<body>
<div class="height-responsive">
//your code
</div>
</body>