How to apply min-height in IE and other browsers
-
I am trying to understand the idea behind the min-height attribute in CSS. It works fantastic in FF, but in IE it falls to pieces (if only this was late breaking, shocking news and not general repetition!).
I’m trying to find a simple solution to this and read up on mezzonlue’s site something about padding – it all seems a bit confusing to me though, and I really want to understand it as well as apply it.
Here’s the code I have:
#insideWrapper {
background: #994466 url(‘images/bgcontent.jpg’) repeat left;
position: relative;
top: 5px;
width: 510px;
margin: auto;
margin-bottom: 5px;
border: 0px solid #666;
background-color: #99FF66;
text-align: justify;
min-height: 600px;
}So how do I get it to work with IE and others, without going through a padding circus?
Thanks in advance
The site: https://sekhu.net/wp/
- The topic ‘How to apply min-height in IE and other browsers’ is closed to new replies.