Answers for "ul li a inline"

21

list items inline

ul{
overflow:hidden;
}
li{
display:inline-block;
}
Posted by: Guest on August-11-2020
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