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
Then you wouldn't have an underline, you'd have a border on the element.
border-bottom: 1px red solid;