Can I order my CSS columns horizontally instead of vertically?

前端 未结 5 1870
南笙
南笙 2021-02-01 17:25

Here is my code:



        
5条回答
  •  無奈伤痛
    2021-02-01 17:55

    I actually put some effort forward this time. ignore everything from previous edit

    the display property's inline-blocks is probably what you want to use.

    Here is a thorough guide on how to use it

    And here's a brief demo

    li {
        width: 200px;
        display: inline-block;
    }
    

提交回复
热议问题