Answers for "html style inline list"

CSS
21

list items inline

ul{
overflow:hidden;
}
li{
display:inline-block;
}
Posted by: Guest on August-11-2020
0

html list inline

#menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex
}
Posted by: Guest on November-07-2020

Browse Popular Code Answers by Language