Answers for "how do you center block elements ?"

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

Code answers related to "how do you center block elements ?"

Browse Popular Code Answers by Language