J
J
JoveLebedev2015-12-21 12:48:02
css
JoveLebedev, 2015-12-21 12:48:02

How to set scale in full screen mode?

How to set scale in full screen mode?
Not installed via viewport...

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vladislav Bezenson, 2015-12-31
@JoveLebedev

Page scaling is possible only by the user. Neither with CSS nor JS can you specify the scale. Well, it is worth considering that almost everyone has a scale of 100%. If you want to enlarge some element on the page, then maybe you need this:

.block {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question