Day 191
I still want to do more with Grid and Flexbox...
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
<head>
<title>CSS Grids</title>
<style>
.wrapper{
display:grid;
grid-template-columns: 70% 30%;
/*
grid-column-gap:1em;
grid-row-gap:1em;
*/
grid-gap:1em;
}
.wrapper > div{
background:#eee;
padding:1em;
}
.wrapper > div:nth-child(odd){
background:#ddd;
}
</style>
</head>
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
<head>
<title>CSS Grids</title>
<style>
.wrapper{
display:grid;
grid-template-columns: 70% 30%;
/*
grid-column-gap:1em;
grid-row-gap:1em;
*/
grid-gap:1em;
}
.wrapper > div{
background:#eee;
padding:1em;
}
.wrapper > div:nth-child(odd){
background:#ddd;
}
</style>
</head>
Comments
Post a Comment