CSS - How to force elements to 100% of remaining/available space of parent element without extending beyond it?

后端 未结 2 822
时光说笑
时光说笑 2021-02-20 04:06

This seems like a really amateur question, in my opinion, but nonetheless it\'s still a frustrating anomaly.

This is actually the 2nd part of a 2 part problem. The firs

2条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-20 04:45

    You can use absolute positioning.

    #b {
        width: 40em;
        height: 20em;
        position:relative;
        background: red;
    }
    #c {
        position: absolute;
        top: 1em;
        bottom: 1em;
        left: 1em;
        right: 1em;
        background: blue;
    }
    
    

提交回复
热议问题