Ver Mensaje Individual
  #7 (permalink)  
Antiguo 18/11/2013, 22:33
Avatar de willyfc
willyfc
 
Fecha de Ingreso: octubre-2008
Ubicación: Santa Cruz - Bolivia
Mensajes: 662
Antigüedad: 15 años, 7 meses
Puntos: 40
Respuesta: Abrir una pagina al apretar una imagen que esta dentro de una caja de text

Creo que la estructura base sería algo así:

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <title>Ejemplo</title>
  3. <style type="text/css">
  4. #contenedor{ width: 532px; margin: 30px auto; background: #CCC; position: relative; padding: 20px 10px}
  5. .userBox{border: 1px solid #CC0000; width: 418px; background: #FFF; padding:5px 34px 5px 2px }
  6. input[type="submit"]{ width: 72px;background: #4889F1; text-align: center;color: #FFF; border: 0; cursor: pointer; padding: 5px 0}
  7. a.boton{ display: block; width: 25px; height: 20px; background: #999; position: absolute; top: 24px;  right: 89px; text-indent: -1000000px; z-index: 9999}
  8. a.boton:hover{background: #CFBFFF}
  9. </head>
  10.  
  11. <div id="contenedor">
  12.     <input class="userBox" type="text">
  13.     <input type="submit" value="B">
  14.     <a class="boton" href="">camara</a>
  15. </div>
  16. </body>
  17. </html>

eso, si no entendí mal.
__________________
WFC
codigo82