문제

I am prepending elements with jquery. Here is what I add:

  <span class="author">AUTHOR: Ayuidasht</span>

im trying to get it to be above the other text, but it is still not working with z-index.

.author {
    color:red;
    font-family:"Drone";
    z-index:99999;
  background-font:green;
}
도움이 되었습니까?

해결책

Do yo mean to 'cover up' the other text? It would need to be positioned absolutely

.author {
   ...; 
  position:absolute;
}

다른 팁

z-index works with position: absolute. Hope it helps!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top