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"
Thanks in advance for your help.
Bootstrap is adding a border-bottom
to legend
. You can remove it by adding border: 0
to legend
.
legend {
border: 0;
}