Im trying to make the two inline-block divs to be aligned in the center
why is there white space on the right side of the div
.wrapper {
border: red 2px solid;
min-width: 40%;
display: inline-block;
}
body {
width: 80%;
margin: 0 auto;
border: 1px black solid;
}
<div class="wrapper">
<h1>
hello
</h1>
</div>
<div class="wrapper">
<h1>
hello
</h1>
</div>