middle positioning css
middle positioning css
HTML
Centering example:
<div id="container">
<div id="content">
Line 1
</div>
</div>
CSS
body {
font: 36px Arial, sans-serif;
}
#container {
color: white;
background: #ffbd17;
width: 400px;
height: 260px;
}
#content {
background: #06c;
position: relative;
float: left;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}