html center div horizontally code example
Example 1: center div horizontally and vertically
.parent {
position: relative;
}
.child {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
Example 2: css align center
//HTML
<div class="parent">
<span>Hello World</span>
</div>
//CSS
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 3: css align items vertical center
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 4: how to center a div element
/*ADD MARGIN auto to left and right*/
.box1{
width:80%;
margin:0 auto;
}
Example 5: how to horizontal center a div in css
#inner {
width: 50%;
margin: 0 auto;
}
Example 6: how to get my div to centre
.div{margin: 0 auto;}