Advertisement
hmbashar

List item with column

Sep 15th, 2019
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.61 KB | None | 0 0
  1. /*
  2.   border:3px solid pink;
  3.   display: flex;
  4.    flex-direction: column;
  5.  
  6.   flex-direction: column;
  7.   height:400px;
  8.   flex-wrap: wrap;
  9.  
  10.   flex-flow: column-reverse wrap-reverse;  
  11.   justify-content: flex-end, center, flex-start, space-between, space-around, space-evenly;
  12. align-items: flex-start, flex-end, center, baseline, stretch
  13.   height:800px;
  14.   justify-content: center;
  15. */
  16.  
  17. .container {
  18.   border:3px solid pink;
  19.   display: flex;
  20.   flex-direction: column;
  21.   height:400px;
  22.   flex-wrap: wrap;
  23. }
  24.  
  25. .container .list-item {border:1px solid red;list-style: none;font-size: 20px;padding:10px;color:#fff;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement