3 ways to centre a div + life advice

A few years ago, when I was a beginner developer such a task, to centre a div, would be easy and hard at the same time. It’s super comprehensible yet you’re not sure how to do it (although you probably saw it many times while following a boot camp). An…


This content originally appeared on DEV Community and was authored by Dalibor Belic

A few years ago, when I was a beginner developer such a task, to centre a div, would be easy and hard at the same time. It's super comprehensible yet you're not sure how to do it (although you probably saw it many times while following a boot camp). And then when googling starts and we all know how it goes.

What I want you to know is that this is totally fine! Not knowing something is okay, no matter how simple (or hard) it may look. On the other, what needs to be stressed out is the ability to find the answer (it is also a skill, treat it that way). That is the key! Now, when I'm googling, I kinda feel where (or if) the answer lies on a certain page. You'll get there, keep it up!

Now, let's centre this DIV:

<section>
    <div class='centre'>
        test
    </div>
</section>

The Traditional Approach

.centre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

And then flexbox came

.centre {
    display: flex;
    justify-content: center;
    align-items: center;
}

With Grid ?

.centre {
    display: grid;
    place-items: center;
}

Till next time,
Dalibor


This content originally appeared on DEV Community and was authored by Dalibor Belic


Print Share Comment Cite Upload Translate Updates
APA

Dalibor Belic | Sciencx (2021-05-20T15:04:02+00:00) 3 ways to centre a div + life advice. Retrieved from https://www.scien.cx/2021/05/20/3-ways-to-centre-a-div-life-advice/

MLA
" » 3 ways to centre a div + life advice." Dalibor Belic | Sciencx - Thursday May 20, 2021, https://www.scien.cx/2021/05/20/3-ways-to-centre-a-div-life-advice/
HARVARD
Dalibor Belic | Sciencx Thursday May 20, 2021 » 3 ways to centre a div + life advice., viewed ,<https://www.scien.cx/2021/05/20/3-ways-to-centre-a-div-life-advice/>
VANCOUVER
Dalibor Belic | Sciencx - » 3 ways to centre a div + life advice. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/05/20/3-ways-to-centre-a-div-life-advice/
CHICAGO
" » 3 ways to centre a div + life advice." Dalibor Belic | Sciencx - Accessed . https://www.scien.cx/2021/05/20/3-ways-to-centre-a-div-life-advice/
IEEE
" » 3 ways to centre a div + life advice." Dalibor Belic | Sciencx [Online]. Available: https://www.scien.cx/2021/05/20/3-ways-to-centre-a-div-life-advice/. [Accessed: ]
rf:citation
» 3 ways to centre a div + life advice | Dalibor Belic | Sciencx | https://www.scien.cx/2021/05/20/3-ways-to-centre-a-div-life-advice/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.