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 0 讨论(0) 查看其它12个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
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