Ver Mensaje Individual
  #4 (permalink)  
Antiguo 07/10/2008, 03:47
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 7 meses
Puntos: 834
Respuesta: boton bloqueado al minimizar pantalla

Lo del z-indez sólo me ha funcionado cuando le asigno un valor negativo al elemento que queda encima del formulario:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<
title>Documento sin t&iacute;tulo</title>
</
head>

<
body>
 <
div style="z-index:10"><form id="form1" name="form1" method="post" action="" >
 <
input type="button" name="Submit" value="Bot&oacute;n" onclick="alert(123)" />
</
form></div>
<
div style="position:absolute; width:200px; height:200px; left: 5px; top: 0px; ; z-index:-1; background-color: #9900CC; layer-background-color: #9900CC; border: 1px none #000000;">Colocar aquí el contenido de la nueva etiqueta Div</div>
</
body>
</
html