Kyle Dharam
To center an element using transform: translate(-50%, -50%);, you do these steps:
- Set the parent container’s position:
- Apply
position: relative;to the parent element.
- Apply
- Style the child element:
- Set
position: absolute;to position it relative to the parent. - Use
top: 50%;andleft: 50%;to move the element’s top-left corner to the center of the parent. - Apply
transform: translate(-50%, -50%);to shift the element back by half of its width and height, achieving perfect centering.
- Set
Example:
htmlCopyEdit<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Centered Element</title>
<style>
.parent {
position: relative;
width: 100%;
height: 100vh;
background-color: lightgray;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background-color: steelblue;
color: white;
text-align: center;
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
I am centered!
</div>
</div>
</body>
</html>
In this example, the .child element is centered within the .parent container.
Alternatively, modern CSS techniques like Flexbox offer more straightforward centering methods:
cssCopyEdit.parent {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
background-color: lightgray;
}
This Flexbox approach centers the .child element both horizontally and vertically within the .parent container.



