Answers for "How can I horizontally align my divs?"

CSS
0

How can I horizontally align my divs?

.row {
  width: 100%;
  text-align: center; // center the content of the container
}

.block {
  width: 100px;
  display: inline-block; // display inline with ability to provide width/height
}​
Posted by: Guest on May-04-2022

Browse Popular Code Answers by Language