V
V
Vitaly2015-01-27 21:49:40
css
Vitaly, 2015-01-27 21:49:40

Adaptive layout. How to output 480px under 320px?

The designer drew the site at 480px, is it possible somehow, having laid out the site at 480px, to display its reduced version at 320px without a horizontal stripe?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexander Taratin, 2015-01-27
@Taraflex

https://developer.mozilla.org/en-US/docs/Mozilla/M...

D
Denis, 2015-01-27
@72nomer

max-width ?
htmlbook.ru/css/max-width

K
Khangeldy Ilebaev, 2015-01-28
@mahabatuly

everything that doesn't fit

@media screen and (max-width: 480px) {
    display: none;  //или  max-width: 100%;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question