How to create a 3-column responsive layout?

后端 未结 2 1314
夕颜
夕颜 2021-01-31 12:07

I have a 3 column layout. When access it from desktop, it shows like this:

-------------------------------------------
| columnleft | columncenter | columnright          


        
2条回答
  •  天命终不由人
    2021-01-31 12:29

    It will work for you.

    .column-left{ float: left; width: 33%; }
    .column-right{ float: right; width: 33%; }
    .column-center{ display: inline-block; width: 33%; }
    
    @media screen and (max-width: 960px) {
        .column-left{ float: none; width: 100%; }
        .column-right{ float: none; width: 100%; }
        .column-center{ display: block; width: 100%; }
    }
    

提交回复
热议问题