I am looking for examples of css tabs with wrapping text, and the text being centered both vertically and horizontally. Something like this:
- | This is | |
- | a very long | Short title |
- | tab title | |
I’d like to know if this can be done with a simple ul-li-a node hierarchy or if I need to include additional layers (e.g. div or span). I need a cross-browser solution (IE 7+, Firefox, Chrome, Safari).
Styling tabs is not an easy task. For my specific need, I found out that using display:table on the ul element and display:table-cell on the li elements gave a satisfying result (although not supported by older browsers).