Answers for "li spacing in css"

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
0

css list line spacing

ul {
  line-height: 5px;
}
Posted by: Guest on June-08-2021

Browse Popular Code Answers by Language