Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can we create double dotted underline in CSS ? I use border-bottom property.

border-bottom: 1px dotted #oof

But only single dotted underline appears. How can we create double underline ? Is it possible ?

share|improve this question
What do you mean saying "double dotted" ? – ntvf Sep 9 '11 at 7:37

4 Answers

up vote 3 down vote accepted

You need to use at least two HTML elements to achieve this:

<span class="outer>
    <span class="inner">Your text here.</span>
</span>

Both .outer and .inner should have the same dotted bottom border, but .outer should have a few pixels of padding-bottom as well.

See an example here.

share|improve this answer

To save yourself using extra markup you could apply the extra border using the 'after' pseudo element. Check out the fiddle! - http://jsfiddle.net/9mileshq/sg2My/

Also, may be worth checking Chris Coyiers article on browser support - http://css-tricks.com/9189-browser-support-pseudo-elements/

share|improve this answer

Definitely don't need two elements to do this...

.doubleUnderline{
    border-bottom: 3px double;
}
share|improve this answer

Try adding a very thin div below it and set the border top or border bottom 1px dotted aswell. Then you can play with the CSS accordingly to make it fit and make the double dotted line you want.

And no it is not possible to do it on the same element you will have to do it from the outside.

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.