html中设置z-index无效问题解决


    html中经常会出现设置元素的z_index无效的问题,

    设置position即可解决该问题。


    实现代码:

.pro{
    position:fixed;
    width:20px;
    height:20px;
    background:#993333;
    border-radius:50%;/*圆形*/
    z-index: 10;
}



本文转载:CSDN博客