ToBe

ToBe

  • NA
  • 164
  • 92.3k

Problem in DD and DT

Feb 11 2014 12:58 AM
hi everyone

I have one HTMl has dt and dd with dropdown menu but it's not working fine .the order is not correct. text area will alwyas be small and next to the dropdown menu .

this is the code:

<dt><label for="name">name</label></dt>
                                        <dd><input id="name" name="name" type="text" /></dd>
                                        <dt><label for="email">email</label></dt>
                                        <dd><input id="email" name="email" type="text" /></dd>

<dt><label for="email">email</label></dt>

<select name="type" class="text">
<option value="Book">Book</option>
<option value="Magz">Magz</option>
<option value="Cds">Cds</option>
                                       
  <dt><label for="Notes">Notes</label></dt>
 <dd><textarea name="message" id="Notes" cols="" rows=""></textarea></dd>


how to fix it ?