Answers for "space between ul li"

CSS
2

space between li css

ul li{
  margin-left: 5px;
}
ul li:first-child{
  margin-left: 0;
}
/*
  all li tags will margin from left 5px except for the first li
*/
Posted by: Guest on June-17-2021

Browse Popular Code Answers by Language