Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. .rows-1 {
  2. display: grid;
  3. grid-template-rows: repeat(1, 1fr);
  4. }
  5.  
  6. .rows-2 {
  7. display: grid;
  8. grid-template-rows: repeat(2, 1fr);
  9. }
  10.  
  11. .rows-3 {
  12. display: grid;
  13. grid-template-rows: repeat(3, 1fr);
  14. }
  15.  
  16. .rows-3 {
  17. display: grid;
  18. grid-template-rows: repeat(3, 1fr);
  19. }
  20.  
  21. .rows-4 {
  22. display: grid;
  23. grid-template-rows: repeat(4, 1fr);
  24. }
  25.  
  26. .rows-5 {
  27. display: grid;
  28. grid-template-rows: repeat(5, 1fr);
  29. }
  30.  
  31. .rows-6 {
  32. display: grid;
  33. grid-template-rows: repeat(6, 1fr);
  34. }
  35.  
  36. .rows-7 {
  37. display: grid;
  38. grid-template-rows: repeat(7, 1fr);
  39. }
  40.  
  41. .rows-8 {
  42. display: grid;
  43. grid-template-rows: repeat(8, 1fr);
  44. }
  45.  
  46. .rows-9 {
  47. display: grid;
  48. grid-template-rows: repeat(9, 1fr);
  49. }
  50.  
  51. .rows-10 {
  52. display: grid;
  53. grid-template-rows: repeat(10, 1fr);
  54. }
  55.  
  56. .rows-11 {
  57. display: grid;
  58. grid-template-rows: repeat(11, 1fr);
  59. }
  60.  
  61. .rows-12 {
  62. display: grid;
  63. grid-template-rows: repeat(12, 1fr);
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement