Why z-index is not working?

前端 未结 2 1178
梦如初夏
梦如初夏 2020-12-22 07:41

I have this HTML code:

Title goes here

&
2条回答
  •  礼貌的吻别
    2020-12-22 08:03

    Just manually set the #right-block position :

    #right-block {
        position: relative;
        float: right;
        background-color: blue;
        height: 50px;
        z-index: 5;
    }
    

    z-index only woks on absolute|relative|fixed positioned elements, and the default value is for position is static.

提交回复
热议问题