im trying to keep the main div always center but when resizing the browser window to the minimum sizes starting from 900px, how can I make the "main" stay all left and only in bigger screens or above 900px he starts to center the page in the middle?
Thanks in advance
CSS:
body {
font: 24px Helvetica;
background: #999999;
min-width: 900px;
margin: 0;
}
#main {
margin-left: auto;
margin-right: auto;
clear: both;
}
header {
width: 100%;
background: yellow;
text-align: center;
}
nav {
width: 20%;
min-width: 120px;
max-width: 300px;
float: left;
height: 600px;
background: orange;
text-align: center;
}
article {
width: 80%;
min-width: 400px;
max-width: 1200px;
float: left;
height: 600px;
background: yellow;
text-align: center;
}
footer {
width: 100%;
float: left;
height: 100px;
background: blue;
text-align: center;
}
HTML:
<header>header</header>
<div id='main'>
<nav>nav</nav>
<article>article</article>
</div>
<footer>footer</footer>
You can use the following media query:
Example