Answers for "make items in a list horizontally css"

CSS
11

css list elements horizontally

ul li{
  	display: inline-block;
}
Posted by: Guest on May-02-2021
0

horizontal list css

#menu ul{
  list-style: none;
}
#menu li{
  display: inline;
}
Posted by: Guest on January-06-2022

Code answers related to "make items in a list horizontally css"

Browse Popular Code Answers by Language