Make div fill remaining space of parent

前端 未结 4 2208
不知归路
不知归路 2021-02-13 13:01

I need some help with positioning divs. The HTML structure is as follows:

4条回答
  •  梦谈多话
    2021-02-13 13:37

    Just add an oveflow to the right column and don't float it.

    .right {
      position: relative;
      overflow: hidden;
    }
    

    This will make right to fill the rest of the width.

提交回复
热议问题