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>

Comments

Popular posts from this blog

Day 1

Day 365 + 1

Day 365 + 2