"Murphy was an optimist!"
Today’s basic HTML question August 4, 2008 11:07 pm
Posted by Doug McCaughan in : HTML, Programming, TechnologyCan <optgroup> be nested within <optgroup>? Is the following example legal?
<select>
<optgroup label="A">
<optgroup label="1">
<option>Outlinepart1</option>
</optgroup>
</optgroup>
</select>
Answered! Optgroups may NOT be nested per HTML4 specification.
add a comment