Best Way to do Columns in HTML/CSS

后端 未结 7 927
执念已碎
执念已碎 2020-12-04 23:33

I\'m looking for a way to display 3 columns of content. I\'ve found a way to display wrap-around columns, but I don\'t want that for this page. I\'m looking for a way to say

7条回答
  •  忘掉有多难
    2020-12-05 00:24

    You might also try.

    .col{
      float: left;
    }
    .col + .col{
      float: left;
      margin-left: 20px;
    }
    
    /* or */
    
    .col:not(:nth-child(1)){
      float:left;
      margin-left: 20px;
    }
    
     
    column
    column
    column

    ref: http://codepen.io/co0kie/pen/gPKNWX?editors=1100

提交回复
热议问题