<html>
<head>
<style>
.flex-container {
display: flex;
display: flex;
width: 400px;
height: 250px;
background-color: lightgrey;
}
.flex-item {
background-color: cornflowerblue;
width: 75px;
height: 75px;
margin: auto;
}
</style>
</head>
<body>
<div class="flex-container">
<div class="flex-item">Perfect centering!</div>
</div>
</body>
<!-- Mirrored from www.w3schools.com/css/tryit.asp?filename=trycss3_flexbox_margin2 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:27:32 GMT -->
</html>