Vertical and Horizontal Center Item
by Caner Ă–ncel
HTML
<div class="centered-item">
I am vertically and horizontally centered.
</div>
CSS
html,
body {
height: 100%;
}
.centered-item {
/* Positioning */
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 300px;
/* Just For Style */
padding: 20px;
font-family: "Open Sans", Arial, sans-serif;
color: #FFFFFF;
background: #1f2227;
border-radius: 3px;
}