Resposivnes

Anyone got idea why if the res of screen is less then 740 the width is not 100%?
.section-two {
background-color: white;
min-height: 75dvh;
width: 100%;
}
.section-two {
background-color: white;
min-height: 75dvh;
width: 100%;
}
No description
No description
No description
2 Replies
Juks
JuksOP2mo ago
@media (max-width: 475px) { .section-two{ width: 230%; } } i need to make width 230 to look good
Jochem
Jochem2mo ago
it's going to be hard to solve without sharing the entire thing. "why is the screen less than 100%" can be a thousand different things, including media queries and the lot. Also, generally speaking, setting width to 230% feels like a Bad Idea that's probably solved better some other way. You generally want to avoid causing overflow. please check out #how-to-ask-good-questions and share the whole site in a way that's easy for people to use

Did you find this page helpful?