This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var person = { | |
name: "Brad", | |
age: 35, | |
kids: ["dave", "nick"], | |
address: { | |
street: "Mansfield", | |
city: "ottawa" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.wrapper { | |
transition:all 1.4s; | |
height: 2000px; | |
display: grid; | |
grid-template-columns: 1fr 1fr 1fr 1fr; | |
grid-template-rows: 2fr 1fr 85% 1fr; | |
background-color: black; | |
color: white; | |
max-width: 1240px; | |
min-width: 320px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grid-template-columns: 1fr 1fr 50VW<------ 1fr 1fr | |
set the wrappers grid box to VW to make nested items responsive |
NewerOlder