How to use divs instead of tables

前端 未结 5 1302
被撕碎了的回忆
被撕碎了的回忆 2021-02-04 04:25

I am trying to create the following table layout, but I want to use DIV instead of TABLE:

------------------
|       |        |
| CELL1 |  CELL2 |
|       |              


        
5条回答
  •  醉话见心
    2021-02-04 04:47

    You could use display:inline-block instead of float. Just set widths of about 50% (adjust depending on padding, margins and borders) for the left and right containers and make them inline-block.

    Here is my jsFiddle

提交回复
热议问题