您需要手动定位legend.
fieldset {
width: 200px;
height: 50px;
position: relative;
top: 50px;
left: 50px;
box-sizing: border-box;
border: solid black 1px;
}
legend {
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-50%, 50%);
padding: 0 5px;
background: white;
}Run Code Online (Sandbox Code Playgroud)
<fieldset>
<legend>Legend</legend>
Content goes here.
</fieldset>Run Code Online (Sandbox Code Playgroud)