Search code examples
cssborderlegendfieldsetunderline

Fieldset odd legend underline issue


I have an issue with a fieldset tag: the legend is underlined for no reason. How can I remove the thin line below it?

Here is a screenshot that shows the problem, I have added a red background just to highlight the line under the legend "HEY"

enter image description here

Thanks in advance for your help.


Solution

  • Bootstrap is adding a border-bottom to legend. You can remove it by adding border: 0 to legend.

    Bootply

    legend {
      border: 0;
    }