Flexbox is great for controlling whitespace. Centering a div is basically whitespace control.
Exercise time!
With only one change in the CSS, make it so that:
<style>
img {
width: 100px;
height: 100px;
}
.cat-holder {
display: flex;
width: 400px;
height: 400px;
background-color: darkslateblue;
}
</style>
<div class="cat-holder">
<img
src="../summer-cat.png"
alt="Smashing cat holding icecream
in one hand and a laptop in the other" />
</div>
This is how you could achieve it:
<style>
img {
width: 100px;
height: 100px;
}
.cat-holder {
display: flex;
width: 400px;
height: 400px;
background-color: darkslateblue;
}
</style>
<div class="cat-holder">
<img
src="../summer-cat.png"
alt="Smashing cat holding icecream
in one hand and a laptop in the other" />
</div>