NOTICE

select box 그룹별로 묶기

Date : 2007. 1. 24. 16:39 Category : Programming/HTML/CSS

<select name="language">
  <optgroup label="선택하세요" style="color:orange"></optgroup>
  <optgroup label="Web" style="color:green">
       <option>ASP</option>
       <option>PHP</option>
       <option>JSP</option>
  </optgroup>
  <optgroup label="Window" style="color:blue">
       <option>VB</option>
       <option>C++</option>
       <option>JAVA</option>
  </optgroup>
</select>

이따위로 생겼다.


[출처 : 네이버 블로그(어느 분인지 기억이 안 나요. 엉엉)]