Answer the question
In order to leave comments, you need to log in
Why doesn't overflow-x:hidden work on mobile?
To stretch the background of the block outside the central container, I use this design.
body {
overflow-x:hidden
}
.test {
position:relative
}
.test:before {
content: '';
width: 1000rem;
height: 520rem;
position: absolute;
top: 0;
right: -1000rem;
}
Answer the question
In order to leave comments, you need to log in
Мобильные браузеры игнорируют overflow-x:hidden
для html и body при использовании <meta name="viewport">
Проблема решается добавлением этого свойства отдельным секциям.
Так же, при установке не срабатывает:
body {
overflow-x: hidden;
}
html, body {
overflow-x: hidden;
}
overflov-x:hidden - синтаксическая ошибка overflow и еще может мобильный браузер не знать overflow-x и еще используй просто
body {
overflow: hidden
max-width: 100%
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question