My page does not get responsive in large resolutions

Asked

Viewed 79 times

-4

In large screen resolutions the horizontal scroll bar appears on the page. I am using the entire width of my screen as code below:

.slides {
    width: 100vw;
}

Follow the example:

https://i.stack.imgur.com/gwK2Z.jpg

Thank you

1 answer

1

I removed all your Section containing the container class leaving only #carouselExampleIndicators

in css did so:

#carouselExampleIndicators {
    max-width: 100vw;
    overflow-x: hidden;
}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.