IT노트(구)/JavaScript
제목이 있는 div 만들기(fieldset 이용해서 다이어그램 생성)
스프링연구소
2015. 12. 7. 01:08
fieldset을 이용하면
제목이 있는 div를 만들 수 있다!(깔끔한 다이어그램 형태로!)
다음과 같이 간단하게 생성할 수 있다!
<fieldset>
<legend>The title</legend>
<p>hello world</p>
</fieldset>