.parent {
  display: flex;
}
.first {
  width: 100px;
}
.second {
  display: flex;
}// This is also flex parent div<div class="parent">
  <div class="first">first</div>
  <div class="second">second
    <div></div>
    <div></div>
  </div>
</div>How to expand the second div to the rest? I don't want to use calc for second div style.
 
     
     
    