'Code Snippets/HTML/CSS/JS'에 해당되는 글 2건
- 2008.01.15 [HTML] <SELECT> <OPTION>
- 2006.07.07 색상표
<select>
<option style="color: white; background-color: blue">a</option>
<option style="color: white; background-color: red">b</option>
<option style="color: white; background-color: orange">c</option>
<option style="color: white; background-color: gray">d</option>
<optgroup label="구분선">
<option value="">가</option>
<option value="">나</option>
<option style="background-color: #e4ffe5" value="">다</option>
</optgroup>
</select>
<option style="color: white; background-color: blue">a</option>
<option style="color: white; background-color: red">b</option>
<option style="color: white; background-color: orange">c</option>
<option style="color: white; background-color: gray">d</option>
<optgroup label="구분선">
<option value="">가</option>
<option value="">나</option>
<option style="background-color: #e4ffe5" value="">다</option>
</optgroup>
</select>
위 코드의 결과
원문: http://mdoli.com/tatter/5