Design page layout using CSS/Div like HTML table

前端 未结 3 1118
无人共我
无人共我 2021-01-13 14:26

Since i am new to CSS, i am not sure if the following page layout is possible using Div/CSS or shall i use HTML table?.

i want to design my page such that, Left sid

3条回答
  •  孤城傲影
    2021-01-13 14:55

    There is another way to make table by div/css

    - html
    
        

    Left Col

    ...

    Middle Col

    ...

    • css

    #container { display: table; }

    #row { display: table-row; }

    #left, #right, #middle { display: table-cell; }

提交回复
热议问题