Posted By

valcartei on 08/01/07


Tagged


Versions (?)


Advertising

Website Promotion DIRECTORY is a crucial factor for all websites that need to gain better organic search engine rankings and increase website traffic.
Submitting your website as part of your Web Promotion strategy to our SEO friendly and high traffic Business Directory for review is an excellent way to gain a valuable backlink and increase your websites visibility online.

Submit Site


Who likes this?

8 people have marked this snippet as a favorite

jonhenshaw
Hirmine
basicmagic
Quizosde
vali29
aziz
marteki
monapdx


Styling forms with definition lists


Published in: CSS 






Expand | Embed | Plain Text
  1. <form>
  2. <dl>
  3. <dt>Email:</dt>
  4. <dd><input type="text" name="email" /></dd>
  5. <dt>Name:</dt>
  6. <dd><input type="text" name="name" /></dd>
  7. </dl>
  8. </form>
  9.  
  10. /*CSS*/
  11. FORM DT {
  12. clear:both;
  13. width:33%;
  14. float:left;
  15. text-align:right;
  16. }
  17.  
  18. FORM DD {
  19. float:left;
  20. width:66%;
  21. margin:0 0 0.5em 0.25em;
  22. }

Report this snippet 

You need to login to post a comment.