The problem is my layout does not break on zoom out or in, it just wraps to the left, so at the smallest zoom you would see my layout in the leftmost part of the browser screen. While I want my layout to decrease in size but not float left. I want it to remain centered perfectly all the time every single zoom.
How do I do that?
<!-- language: lang-html --><body class="body">
<div class="wrapper">/</div>
<script src="js/jquery.js" type="text/javascript"></script>
</body>
<!-- language: lang-css -->
.body {
position: absolue;
top: 0%;
margin: 0 auto;
width: 1366px;
height: 768px;
background: white;
}
.wrapper {
position: absolute;
left: 20%;
right: 20%;
margin: 0 auto;
min-height: 100%;
background: black;
}