Search code examples
htmlcssunderline

CSS underlining


To underline text in CSS we can do:

h3 {text-decoration:underline;}

However this only underlines the text enclosed in h3 tag. What if want the underline to go across the page?

Thanks


Solution

  • Then you wouldn't have an underline, you'd have a border on the element.

    border-bottom: 1px red solid;