5
I need to make a site that has a minimum resolution of 970px, but that fits up to 1300px wide.
Researching, I found something like this:
.container-fluid {
margin-left: auto;
margin-right: auto;
max-width: 1300px;
}
But how about the minimum? How could I stay? I need to use Bootstrap for this?
Thank you! I would not like version for mobile, nor tablet. In case it would be displayed the normal site in 970px... Do I still need to use media queries? And in case I could abandon bootstrap in this project?
– Marcus
It would probably be too much to use bootstrap for something just on desktop screen. These basic css definitions you can simply apply to the main <div> of the page. If it’s desktop only, forget @media.
– Bacco
Beware of using the
@media
. IE8 will not work.– Felipe Viero Goulart
Thank you very much friend! The problem was solved with the use of Media Queries same!
– Marcus
@Marcus dispose. Then try the alternatives proposed in the question and take a general look at the subject, many things you will see that the simple CSS solves for you in a good.
– Bacco