css centered code example
Example 1: css align center
<div class="parent">
<span>Hello World</span>
</div>
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: css center
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 3: css vertical center
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.parent {
display: flex;
flex-direction: column;
justify-content: center;
}
Example 4: center css
div.container4 {
height: 10em;
position: relative }
div.container4 p {
margin: 0;
background: yellow;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%) }
Example 5: how to make the text vertically centered in css
div{
position: relative;
top: 25%;
bottom: 25%;
}
Example 6: centering horizontally
div.center{display:block;margin:auto;width:50%;}
p.center{text-align:center;}