Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/07/2011, 10:28
Avatar de infiero
infiero
 
Fecha de Ingreso: marzo-2006
Mensajes: 38
Antigüedad: 18 años, 1 mes
Puntos: 3
Respuesta: Problemas con clases en una tabla

Tendrias que rearmarlo, esa es una forma mas simple hago desaparecer el texto del div "LINK" y entonces solo queda la img solo te queda ubicar cada div exactamente donde iria la parte que queres que cambie y listo.


Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Documento sin t&iacute;tulo</title>
  5. <style type="text/css">
  6. <!--
  7. .contenedor {
  8. width:1000;
  9. }
  10.  
  11. .img  {
  12. background-image:url(/images/bn2.jpg);
  13. width:1000px;
  14. height:1000px;
  15. }
  16.  
  17. .a1 a
  18. {
  19.    margin-top:1; para acomodar
  20.     margin-left:1; para acomodar
  21.     margin-right:1; para acomodar
  22.     margin-bottom:1; para acomodar
  23. * * background-image:url(images/web1.png);
  24. * * background-repeat:no-repeat;
  25. * * width:426px;
  26. * * height:34px;
  27. * * text-decoration:none;
  28. * * display:block;
  29. * * text-indent:-9000px; ACA EL TRUCO
  30. * * padding:0 5px 5px;
  31. }
  32. *
  33. .a1 a:hover
  34. {
  35.    margin-top:1; para acomodar
  36.     margin-left:1; para acomodar
  37.     margin-right:1; para acomodar
  38.     margin-bottom:1; para acomodar
  39. * * background-image:url(images/web2.png);
  40. * * background-repeat:no-repeat;
  41. * * width:426px;
  42. * * height:34px;
  43. * * text-decoration:none;
  44. * * display:block;
  45. * * text-indent:-9000px; ACA EL TRUCO
  46. }
  47. -->
  48. </head>
  49.  
  50. <div clas="contenedor">
  51. <div class="img"> </div>
  52. <div class="a1"><a href="mi url">LINK</a></div>
  53. </div>
  54. </body>
  55. </html>

Última edición por infiero; 30/07/2011 a las 10:40