* fix: restructure certifications guide articles * fix: added 3 dashes line before prob expl * fix: added 3 dashes line before hints * fix: added 3 dashes line before solutions
359 B
359 B
title
title |
---|
Center an Element Horizontally Using the margin Property |
Center an Element Horizontally Using the margin Property
Solutions
Solution 1 (Click to Show/Hide)
<style>
div {
background-color: blue;
height: 100px;
width: 100px;
margin: auto;
}
</style>
<div></div>