Answers for "how to align elements in a li horizontally"

CSS
10

css list elements horizontally

ul li{
  	display: inline-block;
}
Posted by: Guest on May-02-2021
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 in a li horizontally"

Browse Popular Code Answers by Language