center horizontally div 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 center horizontally and vertically
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Example 3: css center
div { display: grid; place-items: center; }
div{ display:flex; align-items:center; }
div { width: 100%; margin: 0 auto; }
Example 4: center a div
<div id="outer">
<div id="inner">Foo foo</div>
</div>
<style>
#inner {
display: table;
margin: 0 auto;
border: 1px solid black;
}
#outer {
border: 1px solid red;
width:100%
}
</style>