Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 HTML 标签或 javascript 设置网页的缩放。我需要在 Internet Explorer 9 上渲染一个具有 85% 缩放属性的网页。
使用Javascript;简单的例子
document.body.style.zoom="85%"
或 CSS:
body { zoom: 85%; }
试试这个
document.body.style.zoom = "85%";