Answers for "css how to make lis horizontal"

CSS
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
0

li elements horizontally css

display: inline;
Posted by: Guest on January-16-2021

Code answers related to "css how to make lis horizontal"

Browse Popular Code Answers by Language