Answers for "css simple li 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

Browse Popular Code Answers by Language