gambar pusat CSS
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
Unusual Unicorn
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
.parent {
display: flex;
justify-content: center;
align-items: center;
}
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* For horizontal align: */
parent-element {text-align:center;}
/* For horizontal and vertical align: */
parent-element {position: relative;}
element-to-be-centered {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
/* See https://www.w3schools.com/css/css_align.asp for more info */
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
.contentCentralized {
width: 100%;
height : 200px; //Remove height if you don't want specified height for it
display: flex;
flex-direction: column; //options : row | row-reverse | column | column-reverse
flex-wrap: wrap; //options : flex-start | flex-end | center | baseline | stretch
justify-content: center; //options : start | center | space-between | space-around | space-evenly
align-items: center;
}
<div class="contentCentralized">
<h3>Hello Developers.</h3>
</div>