Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/01/2012, 12:14
Avatar de amirx
amirx
 
Fecha de Ingreso: octubre-2011
Mensajes: 3
Antigüedad: 12 años, 6 meses
Puntos: 0
Respuesta: Maquetar form

Cita:
Iniciado por emprear Ver Mensaje
Algo asi te podría funcionar
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <style type="text/css">
  7. /*<![CDATA[*/
  8.  
  9. div.negra{
  10. background-color: #000;
  11. width: 180px;
  12. padding: 5px;
  13. }
  14.  
  15. div.blanca{
  16. background-color: #fff;
  17. padding: 2px;
  18. border-radius: 5px;
  19. }
  20.  
  21. input{
  22. border: none;
  23. margin:0;
  24. }
  25.  
  26. input.lupa{
  27. width: 17px;
  28. height: 17px;
  29. background-image: url('http://foros.emprear.com/img/fdw/loupe.png');
  30. background-color: #FFF;
  31. color: transparent;
  32. border: none;
  33. outline: none;
  34. cursor: pointer;
  35. }
  36.  
  37. /*]]>*/
  38. </head>
  39. <div class="negra">
  40. <div class="blanca">
  41. <form action="#">
  42. <input type="text" name="buscar" /><input type="submit" class="lupa" value="." title="buscar" />
  43. </span>
  44. </form>
  45. </div>
  46. </div>
  47. </body>
  48. </html>


Saludos
Muchisimas gracias :) Despues de un rato de acomodarlo con esto me salio :)