#grid

Code Example - #grid

                
                        #grid {
  display: grid;
  width: 80%;
  grid-template-columns: 50px 1fr;
}

#areaA {
  background-color: lime;
}

#areaB {
  background-color: yellow;
}