What is the difference to use {text-decoration: underline} and {border-bottom: ...}?
which is easy to style and cross browser compatible?
when we should use border-bottom over text-decoration: underline?
Would it be good to use border-bottom always in place of text-decoration: underline?
border-bottomputs a line at the bottom of the element box.text-decoration:underlinerenders the text underlined. The exact difference depends on the HTML and text layout engines in use, but in general if you want text underlined, then underline it.