element align center css code example

Example 1: css align center

//HTML
Hello World
//CSS .parent { display: flex; justify-content: center; align-items: center; }

Example 2: center css elements

body{
  display: grid;
  place-items: center;
}

Example 3: css align center

.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}

Example 4: center elemnts css

margin-left: auto;
margin-right: auto;

Example 5: how to center align the html element in css examples

#inner {
  width: 50%;
  margin: 0 auto;
}

# center text
.center {
  text-align: center;
  
border: 3px solid green;
}

Tags:

Misc Example