I have the following markup:
<div class="wrapper">
  <div class="block new-block"></div>
  <div class="block used-block"></div>
  <div class="block service-block"></div>
  <div class="block certified-block"></div>
  <div class="block offer-type-block"></div>
</div>
And the following css with it:
.wrapper {
  width : 800px;
  height : 100px;
  background : #393533;
  margin : auto;
}
.block {
  width : 19%;
  height : 80px;
  background : salmon;
  display : inline-block;
}
I want to center the inner 5 divs horizontally and vertically in the container wrapper container, how can I achieve this using css. Thanks ahead!
 
     
     
    