Answers for "how can i align center horizontally an element in css"

CSS
4

how to align elements horizontally in css

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.block {
  width: 100px;
}
Posted by: Guest on April-23-2020
1

how to horizontal center a div in css

#inner {
  width: 50%;
  margin: 0 auto;
}
Posted by: Guest on June-18-2020

Code answers related to "how can i align center horizontally an element in css"

Browse Popular Code Answers by Language