vote up 0 vote down star

I have a very simple HTML page (validates as XHTML 1.0 Strict):

<div class="news-result">
    <h2><a href="#">Title</a></h2><span class="date">(1-1-2009)</span>
    <p>Some text...</p>
</div>

with the following CSS:

.news-result {
    overflow: hidden;
    padding: 30px 0 20px;
}

.news-result h2 {
    float: left;
    margin: 0 10px 0 0;
}

.news-result span.date {
    margin: 1px 0 0;
    float : left;
}

.news-result p {
    padding: 3px 0 0 0;
    clear: left;
}

Rendering this page in IE6 or FF3 render perfectly (the title and the date on a single line, followed by the paragraph). In IE7 however, there is a large space between the title and date, and the paragraph.

We have a simple reset that clears every margin and padding on every element.

Dropping the float on the date element fixes this problem, as does setting zoom: 1 on the paragraph or removing overflow: hidden on the container, but all are not ideal. Why does a float followed by a paragraph trigger this additional top margin, only on IE7?

flag

40% accept rate

3 Answers

vote up 0 vote down

Because IE7 is still float bugged, I'm afraid.

(fixes at the links)

link|flag
It is the margin top that appears unwanted, and not a margin bottom that does not appear. – Kamiel Wanrooij Jan 8 at 15:16
vote up 1 vote down

Can I assume that you have a doc-type?

However, change the h2 and span to display: inline; should also clear up your issue.

Edit --- adding hasLayout

Understanding that inline isn't always an option, here's an article explaining what's going on.

Essentially you have to give the <p> hasLayout. There are many ways to do this, and I don't like using <div class="clearall"></div> and prefer to use overflow: hidden; or zoom: 1;

link|flag
Our doctype is XHTML 1.0 Strict (and validates @ W3C). – Kamiel Wanrooij Jan 8 at 15:13
Display: inline does clear it up, but does not allow us to have a float before the p, something we need in some situations. – Kamiel Wanrooij Jan 8 at 15:43
Edited to add the explanation / solution link – Steve Perks Jan 8 at 19:19
One more thing to note - it's the 30px padding on .news-result that IE7's duplicating, so if you find another way to add padding (a second div?), you'll be good on this too. – Steve Perks Jan 8 at 19:29
vote up 1 vote down

I'm seeing the extra whitespace in IE6, 7 and 8B2.

It appears that IE has a non-zero top-margin applied to the <p> tag.

I was able to remove the whitespace in IE by making the following change:

.news-result p {
    margin-top: 0;
    padding: 3px 0 0 0;
    clear: left;
}

The change did not seem to have any negative side-effects in Firefox 2 or 3, Opera 9.63 or Safari for Windows 3.2.1.

link|flag
Utilizing a css reset ala Eric Meyer: meyerweb.com/eric/thoughts/… will help minimize some of the browser differences you may be experiencing. – Traingamer Jan 7 at 19:22
We've got a reset already, forgot to mention that... Thanks! – Kamiel Wanrooij Jan 8 at 15:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.