Two divs: one fixed, other stretched

后端 未结 3 1026
别那么骄傲
别那么骄傲 2021-02-19 11:51

I am trying to accomplish this: \"divs-fixed-and-stretched\"

But I am having trouble getting the two middle divs to

3条回答
  •  甜味超标
    2021-02-19 12:33

    Wouldn't this work as intended?

    #floatitleft{
        width:300px;
        float:left;
    }
    #floatitright{
        margin-left: 300px;
    }
    

提交回复
热议问题