Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 22nd, 2012  |  syntax: None  |  size: 0.50 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. CSS - Float to max width
  2. #container {
  3.    max-width: 800px;
  4.    min-width: 500px;
  5. }
  6. .profile {
  7.    float: left;
  8.    width: 100px;
  9. }
  10. .info {
  11.    float: left:
  12.    min-width: 400px;
  13.    max-width: 700px;
  14. }
  15.        
  16. <div id="container">
  17.     <div class="profile">
  18.         IMG
  19.     </div>
  20.     <div class="info">
  21.         INFO
  22.     </div>
  23. </div>
  24.        
  25. #container {
  26. width: 800px;
  27. clear: both;
  28. overflow: hidden;
  29. }
  30.  
  31. .profile {
  32.    float: left;
  33.    width: 100px;
  34. }
  35. .info {
  36.    float: left:
  37.    min-width: 400px;
  38.    max-width: 700px;
  39. }