text-decoration: underline vs border-bottom

css

Solution

`border-bottom` puts a line at the bottom of the element box. `text-decoration:underline` renders 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.

Problem

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`?

Original source