I need a div with 70px. But if you inspect this element, it has 64px. In my app, the green div is a sidebar with js animation. I need to "push" the content (it has 100% of width).
.parent {
  display: flex;
  width: 100%;
  background: rgba(0,0,0,.2);
}<div class="parent">  
  <div style="width:70px; background: green; height: 50px"></div>
  <div style="width: 100%; background: rgba(0,0,0,.4)">a</div>
</div>how can i have 70px on green div?
 
     
    