Question

I am trying to get some hardcoded text to show above a absolutely positioned element that is an image using z-index to no avail.

Is there something I'm missing?

.repay {
    font-family:Arial,Helvetica, sans-serif;
    font-size:18px;
    color:#444;
    text-align:center;
    font-weight:bold;
    margin:40px 0px 30px 0px;
    z-index:10001;
}

.sliderbubble-repay {
    width:227px;
    height:140px;
    background:url('../images/white-sliderbubble.png') no-repeat;
    position:absolute;
    top:119px;
    left:255px;
    z-index:1;
}
Was it helpful?

Solution

Elements need to have position:absolute; or position:relative; for z-index to work.

Try adding position:relative; to .repay

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top