Advertisement
Guest User

Untitled

a guest
Mar 13th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <div class="textbox-column label">
  2. <div>User Name:</div>
  3. <div>Password:</div>
  4. </div>
  5. <div class="textbox-column input">
  6. <div><div class="hack">#</div><input type="textbox" name="username" /></div>
  7. <div><div class="hack">#</div><input type="password" name="password" /></div>
  8. </div>
  9. <div class="clear"></div>
  10.  
  11. div.clear {
  12. clear: both;
  13. }
  14.  
  15. .textbox-column {
  16. line-height:1.6em;
  17. }
  18. .textbox-column.label {
  19. float: left;
  20. margin-right:1em;
  21. }
  22. .textbox-column.input {
  23. float: right;
  24. }
  25. .textbox-column .hack {
  26. display: inline;
  27. width: 1em;
  28. margin-right: -1em;
  29. }
  30.  
  31. <div class="row">
  32. <label for="username">Username:</label>
  33. <input type="text" id="username" />
  34. </div>
  35.  
  36. <div class="row">
  37. <label for="password">Password:</label>
  38. <input type="password" id="password" />
  39. </div>​
  40.  
  41. .row {
  42. overflow: auto;
  43. }
  44.  
  45. .row label {
  46. float: left;
  47. min-width: 100px;
  48. }
  49.  
  50. .row input {
  51. float: right;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement