Blind
5
Q:

how to center align the html element in css examples

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
1
#inner {
  width: 50%;
  margin: 0 auto;
}
1
div.center{display:block;margin:auto;width:50%;}
p.center{text-align:center;}
3
# center text
.center {
  text-align: center;
  
border: 3px solid green;
} 
1
#inner {
  width: 50%;
  margin: 0 auto;
}

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

New to Communities?

Join the community