I like an obedient frotend developer must create underline with 2px padding instead of 1px by default. Is exist simple solution for this?
PS Yeahh guys, I know about div
You could wrap the text in a span and give it a border-bottom with padding-bottom:2px;.
span
border-bottom
padding-bottom:2px;
Like so
span{ display:inline-block; border-bottom:1px solid black; padding-bottom:2px; }
Example: http://jsfiddle.net/uSMGU/