Answers for "how to align elements horizontally in css"

3

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
0

how to align elements horizontally in css

<div class="row">
  <div class="block">Lorem</div>
  <div class="block">Ipsum</div>
  <div class="block">Dolor</div>
</div>
Posted by: Guest on April-23-2020

Code answers related to "how to align elements horizontally in css"

Browse Popular Code Answers by Language