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.
当我想缩小整个网站时,我可以修改什么属性,如何修改以及在哪里修改。问题是当我打开我的网站时 - 它太“放大”了。我希望整个页面缩小约 10%。(网站是用refineryCMS,ruby on rails 制作的)
有一个 css 属性可以控制当前元素的放大倍数。元素的渲染效果是相机上的“缩放”功能。即使这个属性没有被继承,它仍然会影响子元素的渲染。
例子
div { zoom: 200% } <div style=”zoom: 200%”>This is x2 text </div>
您可能可以将其应用于身体..