0

What property I can modify, how and where, when I want to zoom out the entire web site. The problem is when I open my web site - it´s just too "zoomed in". I´d like the entire pages to zoom out for about 10 %. (Site is made with refineryCMS, ruby on rails)

Dantes
  • 2,791
  • 6
  • 26
  • 34

1 Answers1

1

There is a css property that controls the magnification level for the current element. The rendering effect for the element is that of a “zoom” function on a camera. Even though this property is not inherited, it still affects the rendering of child elements.

Example

div { zoom: 200% }
<div style=”zoom: 200%”>This is x2 text </div>

You could probably apply this to the body..

Buzz Lightyear
  • 190
  • 2
  • 19
  • thx buzz. It works. i just have a problem when I open picture gallery - js. If I zoom it out on the right side I see some space... – Dantes Aug 30 '12 at 20:50
  • @Dantes have any screenshots or anything i can take a look at? – Buzz Lightyear Aug 31 '12 at 08:28
  • Buzz Lightyear,thanks for your quick reply. Here is the screenshot (I marked the critical place with red arrows) http://tinypic.com/r/20tj78g/6 – Dantes Aug 31 '12 at 12:06
  • to remove margin and padding from HTML body but not the margin-right and etc....Just "Margin and padding". You go to your CSS and add body{margin:0;padding:0;} and try it on all browsers.It should fit. – Buzz Lightyear Aug 31 '12 at 12:10