Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .burger{
- width: 90%;
- height: 100%;
- display: flex;
- justify-content: space-between;
- margin: 95px auto;
- padding: 15px;
- }
- .uno{
- grid-area: one;
- }
- .dos{
- grid-area: two;
- }
- .tres{
- grid-area:three;
- }
- .cuatro{
- grid-area: four;
- }
- .cinqo{
- grid-area: five;
- }
- .seis{
- grid-area:six;
- }
- .grille1{
- display: grid;
- grid-template-areas: "one two"
- "three two"
- "four five"
- "six five"
- "six . .";
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement