Ver Mensaje Individual
  #11 (permalink)  
Antiguo 31/08/2010, 07:45
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 17 años, 3 meses
Puntos: 126
Respuesta: Ventana Flotante

Hola

Creo que no lo has entendido.
Prueba y estudia esto
Código HTML:
Ver original
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <style type="text/css">
  3. /*Cualquie navegador */
  4. div#fixme {
  5. position: fixed;
  6. top: 10px;
  7. left: 73%;
  8. z-index: 2;
  9. }
  10.  
  11. /* IE */
  12. @media screen {
  13.  
  14. * html,
  15. * html body {
  16. overflow-y: hidden!important;
  17. height: 100%;
  18. margin: 0;
  19. padding: 0;
  20. }
  21. * html #iefix {
  22. height: 100%;
  23. overflow-y: scroll;
  24. position: relative;
  25. }
  26.  
  27. *html div#fixme{position: absolute;}
  28. }
  29. </head>
  30. <table border="1" height="800px" width="1000px">
  31. <tr>
  32. <td>Crear scroll</td>
  33. </tr>
  34.  
  35.  
  36. <div id="fixme">
  37. Está fijado
  38. </div>
  39.  
  40.  
  41. <div id="contenedor">
  42. No está fijado
  43. </div>
  44. </body>
  45. </html>
Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />