Advertisement
Guest User

Untitled

a guest
Apr 11th, 2023
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.57 KB | Source Code | 0 0
  1. .burger{
  2.    
  3.     width: 90%;
  4.     height: 100%;
  5.     display: flex;
  6.    justify-content: space-between;
  7.     margin: 95px auto;
  8.     padding: 15px;
  9. }
  10.  
  11. .uno{
  12.     grid-area: one;
  13. }
  14. .dos{
  15.     grid-area: two;
  16. }
  17.  
  18. .tres{
  19.     grid-area:three;
  20. }
  21. .cuatro{
  22.     grid-area: four;
  23. }
  24.  
  25. .cinqo{
  26.     grid-area: five;
  27. }
  28. .seis{
  29.     grid-area:six;
  30. }
  31.  
  32.  
  33.  
  34.  
  35. .grille1{
  36.     display: grid;
  37.   grid-template-areas: "one  two"
  38.                         "three  two"
  39.                         "four  five"
  40.                         "six five"
  41.                         "six .  .";
  42. }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement