Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Edit: the correct term seems to be byline, not sub-heading. I'll leave the post otherwise unmodified. Convert in your head :)

What's the most semantically correct way to do sub-headings? Example below.


About

We sell apples, yay!

Lorem ipsum...


Since the contents of the sub-heading aren't of much importance when compared to actual, informative headings, I thought that they should not be seen as separate headings by screen readers and search engines.

So, the options that I thought of are as follows:

  • <h2>About</h2><h3>We sell apples, yay!</h3> -> This is what I would like to avoid.
  • <h2>About</h2><span class="sub-heading">We sell apples, yay!</span> -> Works. Is it the best way? Don't know.
  • <h2>About<span class="sub-heading">We sell apples, yay!</span></h2> -> Part of the heading. I don't really know if it's a good or bad thing.

Any advice on this one?

Please correct me if I got the term sub-heading wrong(I probably did) :)

share|improve this question
1  
If you don't consider your sub-headings to be important enough to qualify as actual headings, why are you using them at all? Why, specifically, do you oppose using the various <H2>/<H3>/etc. tags? – Cody Gray Dec 12 '10 at 16:20
@Cody I consider lines like "We sell apples, yay!" more like a decorative element than a heading. Byline seems to be the appropriate term. – Pichan Dec 14 '10 at 12:01

6 Answers

up vote 8 down vote accepted

HTML5 solves this by way of the hgroup tag. Use that.

If you feel you're not yet ready to migrate, then I'd say you should still go with proper heading tags whenever you're marking up a heading. If you feel uncomfortable marking up two headings as siblings, perhaps you can adjust your copy to reduce the number of headings to just one.

Edit:

Since the time of writing, the future of hgroup has been endangered: http://dev.w3.org/html5/status/issue-status.html#ISSUE-164

Edit 2:

As of April 2nd 2013 hgroup is removed from the spec: http://lists.w3.org/Archives/Public/public-html-admin/2013Apr/0003.html

(Source: https://twitter.com/iandevlin/status/318961224836587521)

share|improve this answer
+1 for noting that HTML 5 has better support for situations like this. – Tim Medora Dec 12 '10 at 16:27
I had no idea there's such tag. Thanks! – Pichan Dec 14 '10 at 11:54
Since the time of writing, the future of hgroup has been endangered: dev.w3.org/html5/status/issue-status.html#ISSUE-164 – nikc.org Dec 20 '11 at 6:59
ping @Pichan, see updates – nikc.org Dec 20 '11 at 7:00
ping @TimMedora, see updates – nikc.org Dec 20 '11 at 7:00
show 2 more comments

You should be using the different <Hx> tags to convey heading levels:

<h2>About</h2><h3>We sell apples, yay!</h3>

That's their reason for existence - for different levels of heading.

As far as styling is concerned - why do you think specifying a sub-heading class is better than redefining the H element styles?

share|improve this answer
As clarified by Tim below, I got the term sub-heading wrong. The correct word was byline. No need to clutter the document hierarchy with meaningless headings("We sell apples, yay" doesn't really do anyone any good :). – Pichan Dec 14 '10 at 11:49

I really liked Toby Inkster's suggestion here: http://lists.w3.org/Archives/Public/public-html/2010Nov/0405.html as an alternative to HTML5's proposed <hgroup> element which seems to be a difficult concept for many web authors to grasp. (See the start of that thread by Bruce Lawson.) Toby suggests:

<h2>
  <span>About<span>
  <small>We sell apples, yay!</small>
</h2>
share|improve this answer

I personally think your second option is the best. "About" is the title of a section, but the 'subheading' or more of a descriptive nature than a section title/header. You could use <strong> instead of a span to indicate it's a little more important than the rest of the text yet not a heading.

If they really are subheadings, like

About

About us

Text about us

About this website

Text about this website

You should use <h3> for the sub-headings.

share|improve this answer
Except that, if you use <strong> to denote subheadings, you lose the ability to use the same tag to indicate important bits of content/body text. – Cody Gray Dec 12 '10 at 16:24
I edited my answer, if it's an actual subheading you should use an H element, but if it's just a little more important text (whether it's inside a paragraph or more of an important subline) I'd use strong. I don't think that devaluates the strong element if used in other parts as well. It really depends on whether the subheading is actually some sort of heading/title or more of an introductory line or something. – Stephan Muller Dec 12 '10 at 16:26

Please correct me if I got the term sub-heading wrong(I probably did)

I agree with the other posters that you should not be afraid to use the H1-H6 tags to convey heading information. In this case, I believe it is not a subheading as much as a byline (albeit in a loose sense of the term - http://en.wikipedia.org/wiki/Byline), in which case you would be justified in using a separate non-hierarchal style.

<h2>About</h2> 
<div>We sell apples, yay!</div>

<style>

H2+DIV { /* byline style - IE7+ selector */ }

</style>

OR

<h2>About</h2>
<div class="byline">We sell apples, yay!</div>

<style>

.byline { /* byline style */ }

</style>

To me, a heading means that it is at least potentially the parent of some additional body of information (think of a document outline in MS Word, which also uses headings 1 - 6). If the element has no potential to be a parent of other information, then that is a justification for not treating it as a header within your document structure.

One might still make the case for marking it up using an H[1-6] tag, and that would not be wrong either as long as its usage was consistent throughout your markup.

share|improve this answer
Thanks for the correct term. If not for nikc's answer, I would've accepted yours(Too bad you can't accept multiple answers if they're all equally helpful) +1 for you :) – Pichan Dec 14 '10 at 11:56

In the case that the byline is actually a quote you should use blockquote.

<h2>About Us</h2>
<blockquote class="byline"><p>We Sell Apples Yay!</p></blockquote>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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