Answers for "how to align divs horizontally in html"

CSS
1

css display div horizontally

.horizontalBlocks {
    display: inline-block;
  }
Posted by: Guest on September-12-2020
0

center div horizontally

/* margin auto does the magic, make sure to provide width less than 100% */
.center {
	margin: auto;
    width: 400px;
}

.center {
	margin: auto;
    width: 50%;
}
Posted by: Guest on May-27-2021

Browse Popular Code Answers by Language