Advertisement
Guest User

projects css

a guest
Nov 29th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.29 KB | None | 0 0
  1. .grid {
  2.     display: grid;
  3.     grid-template-columns: auto 800px auto;
  4.     grid-template-rows: 25px 90px repeat(2, auto);
  5.     grid-column-gap: 0px;
  6.     grid-row-gap: 0px;
  7. }
  8.  
  9. .more {
  10.     grid-area: 3 / 1 / 4 / 3;
  11.     width: 800px;
  12.     display: grid;
  13.     grid-template-columns: auto auto;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement