3 Ways To Center Elements In CSS

sanchithasr

Sanchithasr

Posted on November 27, 2020

3 Ways To Center Elements In CSS

Web developers come across many instances in everyday life where they have to center the elements. It is also very common and important concept that is asked during interviews. So today I would like to list out my favorite three ways of centering the things using CSS.

Centered Elements

We have two div elements one inside the other. Outer div has id=’container’ and the inner container has a id = ‘content’. And inside it we have an icon.

<div id="container">        
  <div id="content">   
     <i class="fa fa-beer" style="font-size:24px"></i>       
  </div>      
</div>
Enter fullscreen mode Exit fullscreen mode

Centered Elements

1 . Using Flexbox

We can use flexbox to center the element. For this we assign display property to flex. For centering items, we are using properties justify-content and align-items and assigning it to center.

#container {
  background: #eee;
  height: 500px;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

#content {
  background: pink;
  height: 100px;
  width: 200px;

  display: flex;
  justify-content: center;
  align-items: center;
}
Enter fullscreen mode Exit fullscreen mode

2. Using Grid

Centering the elements using grid is one more efficient way. We can use display property to make use of grid. The place-items property is made use to bring the element to center.

#container {
  background: #eee;
  height: 500px;
  width: 100%;
  position: relative;

  display: grid;
  place-items: center;
}

#content {
  top: 50%;
  background: pink;
  height: 100px;
  width: 200px;

  display: grid;
  place-items: center;
}
Enter fullscreen mode Exit fullscreen mode

3. Using Position Property

Another way is old- age method of using position property to center the things. We have used margin, top, right, bottom and left properties for position.

#container {
  background: #eee;
  height: 500px;
  width: 100%;

  position: relative;
}

#content {
  top: 50%;
  background: pink;
  height: 100px;
  width: 200px;

  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  /* to align the icon */
  text-align: center;
  line-height: 120px;
}
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
sanchithasr
Sanchithasr

Posted on November 27, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

HTML & CSS FREE COURSE WITH PROJECTS
html HTML & CSS FREE COURSE WITH PROJECTS

September 28, 2024

Project 3:CSS Variables
javascript Project 3:CSS Variables

December 4, 2021

KAOSS! Fun with Web Audio
javascript KAOSS! Fun with Web Audio

September 2, 2021

3 Ways To Center Elements In CSS
javascript 3 Ways To Center Elements In CSS

November 27, 2020

Tools for web designing
javascript Tools for web designing

October 30, 2020