Why isn't this XHTML valid? The HTML:

<h2>earthquake warning <span>Posted 03/11/2009 at 2.05pm</span></h2>

The CSS:

h2 {
font: bold 20px Arial, "Helvetica Neue", Helvetica, Geneva, sans-serif;
padding-bottom: 5px;
padding-top: 5px;
text-transform: uppercase;
}

h2 span {
font-weight: normal;
text-transform: none;
display: inline;
}
link|improve this question

56% accept rate
1  
What validation error do you get? Many of us are wary of clicking on random links... – Michael Petrotta Nov 19 '09 at 1:09
feedback

3 Answers

up vote 7 down vote accepted

It's more of putting h2 inside span.

Full Source:

<span class="warning">
    			<h2>Bushfire warning <span>Posted 03/11/2009 at 2.05pm</span></h2>
    			<p class="warning" />Dignissim elit quod dolore sollemnes iriure. Ut suscipit nunc laoreet lectorum facilisi. Consequat eodem consequn congue humanitatis. Vel in litterarum odio solissi. <a href="#">For more information click here.</a>

</span>

You can't put a h2 inside a span tag. Try using a div instead:

<div class="warning">
    			<h2>Bushfire warning <span>Posted 03/11/2009 at 2.05pm</span></h2>
    			<p class="warning" />Dignissim elit quod dolore sollemnes iriure. Ut suscipit nunc laoreet lectorum facilisi. Consequat eodem consequn congue humanitatis. Vel in litterarum odio solissi. <a href="#">For more information click here.</a>

</div>
link|improve this answer
feedback

Because that h2 is inside a span. You cant put a block element (h2) inside an inline element(span).

Replace the span with a div.

link|improve this answer
feedback

it works actually, you just nid to set font size and family to it

i edited it like

div.content h2 span {
display:block;
font-size:12px;
font-weight:normal;
text-transform:none;
}

Here's the result: sample

link|improve this answer
1  
HTML validation has nothing to do with CSS =) – mauris Nov 19 '09 at 1:14
feedback

Your Answer

 
or
required, but never shown

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