I'm attempting to style heading text similar to how your default legend text appears in fieldsets; that is to say, I'd like a strikethrough-like line to come up to, but not through, the text. I can't seem to find any information on how I might accomplish this, and since on numerous other questions Google's always directed me to Stack Overflow for answers, I thought someone here may be able to give me advice.

For greater clarity. I'm attempting to get this effect on header text:

                               Centered Header Text                               

Is there any way to do this?

link|improve this question

Which browsers do you need to support? – thirtydot May 12 '11 at 22:24
Specifically, do you care about IE7? – thirtydot May 12 '11 at 22:29
No, IE8+ is as low as the site will need to go. – Meshaal May 12 '11 at 23:02
I mean, IE7 would be nice, but if it gets in the way of a small feature like this, I'm not going to complain. – Meshaal May 12 '11 at 23:14
feedback

7 Answers

up vote 2 down vote accepted

Here's an idea:

  • In IE7, there will merely be no line.
  • If the text needs to wrap, this won't work.

See: http://jsfiddle.net/QNURQ/

<h2><span>Centered Header Text</span></h2>

h2 {
    text-align: center;
    display: table;
    width: 100%;
}
h2 > span, h2:before, h2:after {
    display: table-cell;
}
h2:before, h2:after {
    background: url(http://dummyimage.com/2x1/f0f/fff&text=+) repeat-x center;
    width: 50%;
    content: ' ';
}
h2 > span {
    white-space: nowrap;
    padding: 0 9px;
}
link|improve this answer
Doesn't seem to be supported in Opera (10.63) either. – Meshaal May 13 '11 at 0:42
I simply didn't test it in Opera. Without digging too deep, it appears that :before/:after don't want to work. Can do the same thing with extraneous spans: jsfiddle.net/QNURQ/3 – thirtydot May 13 '11 at 0:52
Well, :before/:after work in Opera, so I'm not sure what the cause is. Quite possibly, Opera doesn't like the application of excessive styles to :before/:after, but I'm not sure why. However, your fix seems to work nicely once I remove the 100% attribute from the header (since that causes it to malfunction with floating elements). Thank you! :D – Meshaal May 13 '11 at 1:22
feedback

Edit:

<h2><strike>&nbsp;&nbsp;&nbsp;&nbsp;</strike>Your Text Here<strike>&nbsp;&nbsp;&nbsp;&nbsp;</strike></h2>

Here's how you can do it with a few simple tags and non-breaking spaces.

I'd use an image and call it a day, but this seemed to work for me:

CSS

  fieldset {
    border-right: 0px;
    border-left: 0px;
    border-bottom: 0px;
    width: 200px;
  }
  legend {
    margin: 0 25%;
  }

HTML

<fieldset>
  <legend>My Text Here</legend>
</fieldset>

That's the only way I could figure out how to do it with css. Note the width is fixed. Once again I wouldn't do this myself.

CSS Cat Does Not Approve

link|improve this answer
Why is this upvoted? It's using fieldset/legend when the question asks "I'm attempting to style heading text similar to how your default legend text appears in fieldsets". Meaning "don't use fieldset/legend, but replicate the "border" look those elements have. – thirtydot May 13 '11 at 0:11
Okay, here's an updated solution at the top. – onteria_ May 13 '11 at 1:44
+1 for image :) – thirtydot May 13 '11 at 1:49
feedback

I came up with a quick, image-less solution that seems to work pretty well in IE 8+ and other browsers, whilst gracefully degrading in IE 6/7:

<h1>CSS 2.1 EXAMPLE</h1>
h1 { position: relative; text-align: center; }
h1:first-line { background-color: white; }
h1:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: 0px;
    right: 0px;
    height: 1px;
    top: 50%;
    background-color: black;
}

It does come with the following limitations, though:

  • The text must match the overall background colour exactly, otherwise it will look weird.
  • If you want any kind of padding on the text, you need to use non-breaking spaces at either side of the text (see demo).
  • Heading text must always be on one line (works best if fixed width).

Here's a demo: http://jsfiddle.net/AndyE/3tFQJ/

link|improve this answer
feedback

I'm not sure if this would suit your need...

h1:before, h1:after {
 content: " ------------- ";
}
link|improve this answer
Unfortunately not, as it wouldn't stretch to the edge of the document. Something similar may be able to be done with JavaScript, but I'd worry about cross-browser issues (not to mention my desire to keep the site as JS-free as possible, due to my usual over-reliance on it). – Meshaal May 12 '11 at 22:14
Giving it another go: jsfiddle.net/4BZVt This one is centred and spans across the document width. – kei May 12 '11 at 22:25
That's a very innovative approach, but it has the same problem as thirtydot's (with an image background, it's impossible to match): jsfiddle.net/4BZVt/1 – Meshaal May 12 '11 at 22:39
feedback

This doesn't feel like a very good answer, but I'm posting it anyway.

See: http://jsfiddle.net/rFmQg/

<h2><span>Centered Header Text</span></h2>

h2 {
    background: url(http://dummyimage.com/2x1/f0f/fff&text=+) repeat-x center;
    text-align: center
}
h2 span {
    background: #fff;
    padding: 0 9px
}

I don't like it because:

  • You have to use an image.
  • This. (it only works if the backgrounds match)
link|improve this answer
Yeah, I had considered this, but that's a big issue with me, since there's an image background. If my site used a clean background, it would work great. – Meshaal May 12 '11 at 22:24
Did you see my comments on your question? – thirtydot May 12 '11 at 22:46
No, sorry. Answered there. – Meshaal May 12 '11 at 23:02
1  
I got it, based on your answer and kei's redo! The solution was to use the image idea, with kei's redo formatting - but change it to use a table. jsfiddle.net/4BZVt/2 – Meshaal May 13 '11 at 0:16
@Meshaal: Oops. I thought by "heading text" you meant h1/h2 tag, so I was working off that assumption. Yes, it's very easy to do if you're willing to use tables for layout. My second answer is also using tables, just the CSS variety that don't work in IE7 and aren't unsemantic HTML. I suppose using a HTML table is at least simple and easy :) – thirtydot May 13 '11 at 0:20
show 2 more comments
feedback
body { padding-top: 100px; }

div.parent {
    text-align: center;
    border-top: 1px solid #ccc;
}

div.parent div {
    display: inline-block;
    margin-top: -0.8em;
    padding: 0 0.5em;
    background: #fff;
}
<body>
    <div class="parent">
        <div>My Text Here</div>
    </div>
</body>

This is a fluid-width solution that matches your design and should be ok in IE7 (though I'll admit I didn't check). There are a couple of downsides:

  • You lose the fieldset/legend semantics.
  • You can't put a transparent background on the text.

If you don't need it to be fluid-width, onteria_'s solution is probably your best bet.

link|improve this answer
You should make a jsFiddle test case of your code to enable people to quickly see if it will work. I can see that this has the same downside that my first answer and another answer has (the transparent background thing), and the OP has already said he can't use it. – thirtydot May 13 '11 at 0:15
feedback

Here is what I am using on a client's site: http://jsfiddle.net/TPgE4/

Pros:

  • No images needed - renders instantly
  • Uses padding to control space on both sides of text
  • Text can be center aligned, or left/right aligned — just add, e.g., margin-left: 8px or margin-right: 8px on h2 span style definition to make it look good

Cons:

  • Requires use of additional tag such as <span>...</span> inside heading tag
  • Text must fit on one line for good appearance
  • Background color on <span> element must match surrounding background color, so if you have a non-solid background image, gradient or pattern it won't match perfectly
link|improve this answer
Left-aligned: jsfiddle.net/TPgE4/4 Right-aligned: jsfiddle.net/TPgE4/5 – Aaron Aprile Mar 14 at 20:44
You should add the code here, in case the site goes out of date in the future. – Peter O. Mar 14 at 21:04
feedback

Your Answer

 
or
required, but never shown

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