[Solved] Customize html tag u, set it wider than text


Use a <span> instead of <u>. Add a border-bottom and some padding right and that’ll be that.

HTML

<span>Some text</span>

CSS

span {
  border-bottom: 1px solid black;
  padding-right: 40px;
}

Demo

2

solved Customize html tag u, set it wider than text