fieldset : block레벨
구역 표시
부모로만 사용 가능
legend : fieldset의 자식으로만 사용 가능
해당 영역의 제목
<fieldset>
<legend>로그인</legend>
<input type="text">
<input type="password">
<input type="button" value="로그인">
</fieldset>
<fieldset>
<legend>인증</legend>
<input type="text">
<input type="password">
<input type="button" value="로그인">
</fieldset>
잘 봤습니다. 좋은 글 감사합니다.