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 ?
|
How can we create double dotted underline in CSS ? I use border-bottom property.
But only single dotted underline appears. How can we create double underline ? Is it possible ? |
|||
|
|
You need to use at least two HTML elements to achieve this:
Both |
||||
|
|
|
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/ |
|||
|
|
|
Definitely don't need two elements to do this...
|
|||
|
|
|
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. |
|||
|
|