Full browser width div in IE
To create a div the full width of the browser – and have it working in properly IE:
html, body {
width: 100%;
margin: 0;
}
#myDiv {
min-width: 100%;
}
To create a div the full width of the browser – and have it working in properly IE:
html, body {
width: 100%;
margin: 0;
}
#myDiv {
min-width: 100%;
}
leave a comment