CSS stacking div with variable height on two columns

后端 未结 5 2509
抹茶落季
抹茶落季 2021-02-20 09:05

So I\'m working the profile page of a user on my website. And I\'m having a little problem with the CSS.

My problem is the following: I have four div boxes with a fixed

5条回答
  •  长情又很酷
    2021-02-20 09:28

    You can try with this code

    #bottom{
        width: ???px;
        height: ???px;
        background-color: black;
    }
    #top{
        width:???px;
        height:???px;
        background-color:red;
        z-index: 999;
    }
    
    
    
    ......
    ......

提交回复
热议问题