Is there a way to decrease the space between the paragraph and the border of this fieldset? I attempted to adjust the margins in the following manner:
fieldset {
margin: 1px;
margin-top: 2px;
border-top-right-radius: 1px;
}
<fieldset>
<legend>Personalia:</legend>
<p>The quick brown fox jumps over the lazy dog</p>
</fieldset>
Unfortunately, my approach did not reduce the gap as intended. What is the correct method for achieving this?