Cómo colocar H1 al principio

  • Autor Autor eic2010
  • Fecha de inicio Fecha de inicio
E

eic2010

Beta
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
hola quisiera saber como hago para que H1 este delante de todo o de shadow

Insertar CODE, HTML o PHP:
.post-thumb {
    position: relative;
    box-sizing: border-box;
    background: transparent linear-gradient(180deg,#00000000 100%,#000000 100%) 0% 0% no-repeat padding-box;
    height: 100%;
}
#shadow {
  position: absolute;
    bottom: 0;
    left: 50;
    background: transparent linear-gradient(180deg,#00000000 0%,#fff 60%) 0% 0% no-repeat padding-box;
    width: 100%;
    height: 80px;
}
h1{
margin-left:0px;
    margin-bottom:0px;
    margin-top:-10px;
     list-style: none;
     padding:0px;
    font-size:22px;
    font-family: Helvetica ;
    font-weight: 500;
}
.post-categories{
    margin-left:0px;
    margin-bottom:14px;
    margin-top: 33px;
    list-style: none;
     padding:0;
}
 
Última edición:
agrega z-index: 9999;

h1{
z-index: 99999;
margin-left:0px;
margin-bottom:0px;
margin-top:-10px;
list-style: none;
padding:0px;
font-size:22px;
font-family: Helvetica ;
font-weight: 500;
}
 
agrega z-index: 9999;

h1{
z-index: 99999;
margin-left:0px;
margin-bottom:0px;
margin-top:-10px;
list-style: none;
padding:0px;
font-size:22px;
font-family: Helvetica ;
font-weight: 500;
}

muchas gracias!!!
con tu orientacion lo resolvi asi

h1{

position:relative;

z-index:1;

margin-left:0px;

margin-bottom:0px;

margin-top:-10px;

list-style: none;

padding:0px;

font-size:22px;

font-family: Helvetica ;

font-weight: 500;

}
 
Atrás
Arriba