По какой-то причине поля моей области контента, 150px top, не работают в Internet Explorer, поэтому контент находится под заголовком. любая помощь? Я знаю, что в Internet Explorer исправлено - это немного странно, но странно, что это работает, просто контент начинается с верхней части страницы, а не с 150px вниз.
html {
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
overflow-x: auto;
}
body {
background-color: #FBFBFB;
margin:0;
padding:0;
}
#header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 150px;
background-color: #FBFBFB;
z-index: 100;
}
#sidebar {
position: fixed;
top: 150px;
left: 0;
width: 275px;
height: 100%;
z-index: 100;
}
#content {
width: 837px;
margin-top: 150px;
margin-left: 325px;
overflow: auto;
}