Topic: css question
In Internet Explorer, the following page looks just fine:
http://www.bydebrasdesigns.com/bb
But in Mozilla, the grey border only shows up around the header.
I am not very experienced in css, so what do I have to fix?
Thanks
You are not logged in. Please login or register.
PunBB Forums → Programming → css question
In Internet Explorer, the following page looks just fine:
http://www.bydebrasdesigns.com/bb
But in Mozilla, the grey border only shows up around the header.
I am not very experienced in css, so what do I have to fix?
Thanks
I just get a parser error.
I know. I will fix it in about an hour when I get home.
Check at http://bydebrasdesigns.com/baseball first. It's the same, just static pages...
As usual it is actually IE that is getting it wrong. The border is on #wrap and the content inside it is floated. You therefore have to clear the floats to get #wrap to wrap around the floated content. Thats what all those clearer divs you see in PunBB do.
Try
#wrap:after {
content: "";
display: block;
font-size: 0;
height: 0;
line-height: 0.0;
overflow:hidden;
visibility: hidden;
clear: both;
}
PunBB Forums → Programming → css question
Powered by PunBB, supported by Informer Technologies, Inc.