I have a fieldset with a legend that has a text and a button. I am trying to have the button right align using flexbox, it works fine on Chrome but not on Firefox.
I got a minimum code working to show the problem:
main {
width: 100%;
}
fieldset legend {
display: flex;
justify-content: space-between;
width: 100%;
}
<main>
<fieldset>
<legend>
Legend text
<button type="button">
Button text
</button>
</legend>
</fieldset>
</main>
I want both both elements inside legend to be on the same line, as it showing on Chrome: