How to make sidebar with same height as the content div?

前端 未结 5 1045
暗喜
暗喜 2021-01-19 08:37

the code is the following:

(CSS)

#container {
    border:1px dashed #000;
    overflow:hidden;
}
#content, #sidebar {
    float:left;
    width:50%;
         


        
5条回答
  •  说谎
    说谎 (楼主)
    2021-01-19 09:40

    It can be solved with #content, #sidebar { display: table-cell; width:50%; }

提交回复
热议问题