I'd do:

--- HTML ---

<fieldset id="time_fieldset">
    <legend>Time</legend>

    <label for="hour">Hour</label>
    <select id="hour">
        <option>01</option>
        <option>02</option>
        <option>03</option>
    </select>

    <label for="minute">Minute</label>
    <select id="minute">
        <option>01</option>
        <option>02</option>
        <option>03</option>
    </select>

</fieldset>

--- CSS ---

/* To hide the labels
------------------------*/
fieldset#time_fieldset label {
    display:none;
}




--
Kris Khaira
http://kriskhaira.com

******************************************************
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************

Reply via email to