Simple two column html layout without using tables

后端 未结 12 1725
夕颜
夕颜 2021-01-30 05:17

I\'m looking for a super easy method to create a two column format to display some data on a webpage. How can i achieve the same format as:


    &l         
12条回答
  •  无人共我
    2021-01-30 05:27

    You can create text columns with CSS Multiple Columns property. You don't need any table or multiple divs.

    HTML

    CSS

    .column {
        column-count: 2;
        column-gap: 40px;
    }
    

    Read more about CSS Multiple Columns at https://www.w3schools.com/css/css3_multiple_columns.asp

提交回复
热议问题