Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. .container {
  2. display: grid;
  3. grid-template-columns: 1fr 3fr;
  4. grid-template-rows: auto auto; <-- second row (where 'aside' is placed) is
  5. set to content-based height
  6. grid-template-areas: 'nav nav ' 'aside main';
  7. height: 100%;
  8. }
  9.  
  10. .main-container {
  11. display: grid;
  12. grid-template-columns: 1fr 3fr;
  13. grid-template-rows: auto auto; <-- second row (where 'bottomright' is placed) is
  14. also set to content-based height
  15. grid-template-areas: 'topleft topright' 'bottomleft bottomright';
  16. height: 100%;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement