Answers for "show css items horizontally"

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
0

li elements horizontally css

display: inline;
Posted by: Guest on January-16-2021

Code answers related to "show css items horizontally"

Browse Popular Code Answers by Language