Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <div class="outside" style="float:left; margin-right:10px">
  2. <div class="parent">
  3. <div class="child">
  4. Align to the bottom 1
  5. </div>
  6. <div class="child">
  7. Align to the bottom 2
  8. </div>
  9. <div class="child">
  10. Align to the bottom 3
  11. </div>
  12.  
  13. </div>
  14. </div>
  15.  
  16. <div class="outside">
  17. <div class="parent">
  18. <div class="child">
  19. Align to the bottom 1
  20. </div>
  21. <div class="child">
  22. Align to the bottom 2
  23. </div>
  24. <div class="child">
  25. Align to the bottom 3
  26. </div>
  27. <div class="child">
  28. Align to the bottom 4
  29. </div>
  30. <div class="child">
  31. Align to the bottom 5
  32. </div>
  33. <div class="child">
  34. Align to the bottom 6
  35. </div>
  36. </div>
  37. </div>
  38.  
  39. .outside
  40. {
  41. height:200px;
  42. width: 200px;
  43. border: 4px solid green;
  44. overflow-y:auto;
  45. }
  46.  
  47. .parent
  48. {
  49. height: 100%;
  50. width: 200px;
  51. display: flex;
  52. flex-direction: column;
  53. justify-content:flex-end;
  54. overflow-y:auto;
  55. }
  56.  
  57. .child
  58. {
  59. height: 40px;
  60. width: 100%;
  61. background: #f00;
  62. flex: 0 0 auto;
  63. }
  64. .child:nth-child(odd)
  65. {
  66. background: red;
  67. }
  68.  
  69. .child:nth-child(even)
  70. {
  71. background: blue;
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement