DEV Community

Discussion on: The Ultimate Guide to Center Align - CSS

Collapse
 
ikevinclub profile image
kevin tang

.center {
width: 100px;
height: 100px;
margin: auto;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}