override overflow:hidden with z-index

前端 未结 6 1387
误落风尘
误落风尘 2021-01-11 13:41

Am using coda_bubble jquery plugin, and i need to make my bubble pop out within an overflow hidden div. here is my sample code.



<         


        
6条回答
  •  迷失自我
    2021-01-11 14:03

    The z-index property applies to those elements having position set to absolute. Try this css instead:

    .coda_bubble{
      position:absolute;
      z-index:100;/****NOT WORKING*******/
    }
    

提交回复
热议问题