Home > OS >  How do I offset underline using bootstrap?
How do I offset underline using bootstrap?

Time:10-28

I'm trying to place to place a text underline without using CSS. I've used <p><u>text</u></p> and >, but neither seem to have an option to offset so that the text sits a few px lower than default.

Only other method I've seen is > but it takes the length of the entire page.

CodePudding user response:

You could use the border and padding (pb-1, pb-2, etc...) utility classes...

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">

<p class="m-5">
  <span class="border-bottom pb-1">text with underline</span> and other text
</p>
<iframe name="sif1" sandbox="allow-forms allow-modals allow-scripts" frameborder="0"></iframe>

  • Related