0

Why is this piece of code doesn't horizontally scroll the first content with the F text in it.

Shrink the window width to see the F getting hidden, and there is no way to scroll to it.

.wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.wrap > div {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
}

.major-staff {
  width: 13em;
  height: 4em;
  background: yellow;
}
<div class='wrap'>
  <div>
   <div class="cmajor"> 
     <label>F</label>
     <div class="major-staff"></div>
   </div>
   <div class="cmajor">
     <label>G</label>
     <div class="major-staff"></div>
   </div>
  </div>
</div>
Temani Afif
  • 245,468
  • 26
  • 309
  • 415
eguneys
  • 6,028
  • 7
  • 31
  • 63

0 Answers0