How to make a
    display in a horizontal row

后端 未结 7 1483
-上瘾入骨i
-上瘾入骨i 2020-11-28 05:29

How can I make my list items appear horizontally in a row using CSS?

7条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 06:19

    As @alex said, you could float it right, but if you wanted to keep the markup the same, float it to the left!

    #ul_top_hypers li {
        float: left;
    }
    

提交回复
热议问题