Css Question

Hello again,

I ve been using firefox's feature to show my site at 90% zoom level and I like it more this way. Is there a way to make it look like this for everybody else with css? Like with something like size:90% ?

I am afraid, there is no easy way to do it. You can add the following rules:

body{
    -webkit-transform: scale(0.9);
       -moz-transform: scale(0.9);
            transform: scale(0.9);
}

But it can cause many issues in dfferent browsers