@charset "utf-8";
html {
height:100%;
}
body {
background-color:#000000;
height:100%;
}
img
{ border-style: none;
}
container {
background: #EEE;
position:relative;
width:763px;
margin:auto;
min-height:100%;
border-right: 2px solid #0F0;
border-left: 2px solid #0F0; position:inherit;}
whats the deal guys? is it cause of the utf-8 i read it can leave a no width vertical gap, idk kinda shooting in the dark.
You have set the content height to 100%, but not removed the default margin (or padding in some browsers). This means that the content is the height of the viewport, and you get scrollbars so you can reach the bottom of it.
Set:
to remove the default margin/padding.