How to center things with CSS

29 Nov, 2018

Being able to center text, divs and images is one of the most important things that you can utilize to create clean and modern websites. However, there are a few different ways to go about the problem, depending on the situation.

For centring text, it's pretty straightforward. One line is all you need to get the job done.


h1{
  text-align: center;
}
		

Next, if you need to center a div or image you can use auto margins on the left and right. This technique will only work if the div/image has display: block.


#some_div{
  display: block;
  margin: 0 auto;
}
		

Last but definitely not least, if you need to center an element both horizontally and vertically or your working with positioned elements, for example absolute, or fixed etc. Then the previous method won't be of much help. Instead, you will need to center the element with top/bottom/left/right and then shift the element back 50% of its width and height.


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

Other Tutorials

View All

Beme style progress bar

html - css - javascript


How to create a progress bar that wraps around the screen of any sized device similar to the Beme app.

Building a custom chromecast web app

html - javascript


Chromecasts make streaming your favourite songs, games and movies easy. But if you're like me, you might be wondering what's going on behind the scenes when you cast an app, and how you can build your own.

Local Storage vs Cookies (The storage showdown)

javascript


Local site storage can open up a ton of possibilities in web design and breath new life into an otherwise static web page. Whether you want to do something simple like "show a welcome message only once", or something more complex.