Answers for "horizontal list css html"

CSS
11

css list elements horizontally

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

css horizontal ul

ul > li {
    display: inline-block;
    /* You can also add some margins here to make it look prettier */
    zoom:1;
    *display:inline;
    /* this fix is needed for IE7- */
}
Posted by: Guest on November-16-2021

Browse Popular Code Answers by Language