HTML <fieldset> 태그

Jiwon Hwang·2024년 12월 6일
0

html

목록 보기
4/5

시안

HTML fieldset 태그

정의 및 특징
fieldset 태그는 form 요소에서 연관된 요소들을 하나의 그룹으로 묶을 때 사용합니다.

fieldset 요소는 하나의 그룹으로 묶은 요소들 주변으로 박스 모양의 선을 그려줍니다.

또한, legend 요소를 사용하면 fieldset 요소의 캡션(caption)을 정의할 수 있습니다.

<form action="/examples/media/action_target.php" method="get">
  <fieldset>
      <legend>학사 관리 로그인</legend>
      이름 : <input type="text" name="st_name"><br>
      학번 : <input type="text" name="st_id"><br>
      학과 : <input type="text" name="department"><br>
      <button type="submit">제출하기</button>
  </fieldset>
</form>

참고사이트

mbti검사 페이지

작업페이지

웹심리검사

profile
Web Publisher

0개의 댓글