Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .grid {
- display: grid;
- grid-template-columns: auto 800px auto;
- grid-template-rows: 25px 90px repeat(2, auto);
- grid-column-gap: 0px;
- grid-row-gap: 0px;
- }
- .more {
- grid-area: 3 / 1 / 4 / 3;
- width: 800px;
- display: grid;
- grid-template-columns: auto auto;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement