This content originally appeared on DEV Community and was authored by hahaxo
Flexbox:
.container {
display: flex;
justify-content: center;
align-items: center;
height: 300px;
}
Grid
.container {
display: grid;
place-items: center;
height: 300px;
}
Flex Margin
.container {
display: flex;
height: 300px;
}
.centered-div {
margin: auto;
}
Absolute Positioning
.container {
position: relative;
height: 300px;
}
.centered-div {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Margin Auto
.container {
height: 300px;
}
.centered-div {
width: 200px;
margin: 0 auto;
position: relative;
top: 50%;
transform: translateY(-50%);
}
Grid Template
.container {
display: grid;
grid-template-columns: 1fr auto 1fr;
grid-template-rows: 1fr auto 1fr;
height: 300px;
}
.centered-div {
grid-column: 2;
grid-row: 2;
}
This content originally appeared on DEV Community and was authored by hahaxo
Print
Share
Comment
Cite
Upload
Translate
Updates
There are no updates yet.
Click the Upload button above to add an update.
APA
MLA
hahaxo | Sciencx (2024-09-20T15:51:09+00:00) 2024:How to Center a Div in CSS. Retrieved from https://www.scien.cx/2024/09/20/2024how-to-center-a-div-in-css/
" » 2024:How to Center a Div in CSS." hahaxo | Sciencx - Friday September 20, 2024, https://www.scien.cx/2024/09/20/2024how-to-center-a-div-in-css/
HARVARDhahaxo | Sciencx Friday September 20, 2024 » 2024:How to Center a Div in CSS., viewed ,<https://www.scien.cx/2024/09/20/2024how-to-center-a-div-in-css/>
VANCOUVERhahaxo | Sciencx - » 2024:How to Center a Div in CSS. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/09/20/2024how-to-center-a-div-in-css/
CHICAGO" » 2024:How to Center a Div in CSS." hahaxo | Sciencx - Accessed . https://www.scien.cx/2024/09/20/2024how-to-center-a-div-in-css/
IEEE" » 2024:How to Center a Div in CSS." hahaxo | Sciencx [Online]. Available: https://www.scien.cx/2024/09/20/2024how-to-center-a-div-in-css/. [Accessed: ]
rf:citation » 2024:How to Center a Div in CSS | hahaxo | Sciencx | https://www.scien.cx/2024/09/20/2024how-to-center-a-div-in-css/ |
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.