Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. +----------------------------------+
  2. |+---------+ +--------------------+|
  3. || 33% | | width: normally ||
  4. || | | 66%; otherwise ||
  5. || min: | | min-width:600px ||
  6. || 300px | | ||
  7. |+---------+ +--------------------+|
  8. +----------------------------------+
  9. |<| |=| |>|
  10. +----------------------------------+
  11.  
  12. +----------------------------------+
  13. |+---------+ |
  14. || | |
  15. || | +--------------------+|
  16. || | | ||
  17. || | | || <---- I get something like this
  18. |+---------+ +--------------------+|
  19. +----------------------------------+
  20. |<| |=| |>|
  21. +----------------------------------+
  22.  
  23. +----------------------------------+
  24. |+---------+ +--------------------+|
  25. || | | ||
  26. || | | ||
  27. || | +--------------------+|
  28. || | |
  29. |+---------+ |
  30. +----------------------------------+
  31. |<| |=| |>|
  32. +----------------------------------+
  33.  
  34. .firstDiv{
  35. display:inline-block;
  36. min-width:300px;
  37. width:33%;
  38. background-color:red;
  39. white-space:normal;
  40. }
  41. .secondDiv{
  42. display:inline-block;
  43. min-width:600px;
  44. width:66%;
  45. background-color:orange;
  46. white-space:normal;
  47. }
  48.  
  49. .parent{
  50. overflow-x:scroll;
  51. white-space:nowrap;
  52. background-color:blue;
  53. height:400px;
  54. width:100%;
  55. top:0;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement