CSS - position absolute & document flow

后端 未结 4 1052
暖寄归人
暖寄归人 2021-01-14 06:48

Yes, I know doesn\'t work with position absolute, but is there a way to display elements \"below\" (after in code) not behind them?

Example:



        
4条回答
  •  轮回少年
    2021-01-14 07:04

    For h2:

    specify a top margin equal to the height of your image.

    eg.

    img {
        position: absolute;
        top: 0;
    }
    
    h2 {
        margin-top: 400px;
        padding: 40px;
    }
    

提交回复
热议问题