본문 바로가기

IT노트(구)/JavaScript

제목이 있는 div 만들기(fieldset 이용해서 다이어그램 생성)

The title

hello world


fieldset을 이용하면

제목이 있는 div를 만들 수 있다!(깔끔한 다이어그램 형태로!)

다음과 같이 간단하게 생성할 수 있다!


<fieldset>
    <legend>The title</legend>
    <p>hello world</p>
</fieldset>