Tengo este html.
La imagen png se REPITE miles de veces, tiene que estar solo UNA!
Le aplique la funcion no repeat, pero igualmente sigue repitiendose al infinito, no entiendo si es que me falta cerrar alguna etiqueta o un problema de css!
Pego el codigo del html y el css, por favor ayuda con esto!
HTML:
Código HTML:
Ver original
<!DOCTYPE HTML> <html lang="en-us"> <head> <meta charset="utf-8" /> <meta name="Keywords" content=""> <link rel="stylesheet" href="css/html5.css" type="text/css" /> <link rel="stylesheet" href="css/avalon.css" type="text/css" /> <link href="css/jScrollPane.css" rel="stylesheet" type="text/css" /> <!--[if IE]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="css/avalonIE.css" /> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script> <![endif]--> <!--[if lt IE 7]> <link rel="stylesheet" type="text/css" media="all" href="css/avalonIE6.css"/> <![endif]--> <style type="text/css"> .clear { clear: both; visibility: hidden; overflow: hidden; height: 0px; } </style> </head> <body> <div class="wrapper"> <div class="main galeria"> <header> <nav> <ul> </ul> </nav> <hgroup> </hgroup> </header> <div> <section id="cachorros"> <div class="contenedor_mas_informacion"> <ul> <li><a href="mailto:[email protected]" title="Escribinos!!!" style="display: block; width: 819px; height: 349px; background: url(img/cachorros_1.png) no-repeat; text-indent: -9999px; float:left; border: none; outline: none; font-size: 9px; font-family: Tahoma, Arial;" target="_blank"/></li> </ul> </div> </section> </div> <footer> </footer> </div> </div> </body> </html>
Código CSS:
Ver original
#mas_informacion { width:783px; margin:20px auto; background:url(../img/back_cachorros.png) repeat 0 0; padding:25px 22px 20px 22px; height:393px; font-family:Arial, Verdana; color:#fff; position:relative; -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.7); -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.7); box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.7); } #mas_informacion > header { } #mas_informacion > header h1 { text-indent:-9999px; overflow:hidden; background:url(../img/titulo_mas_informacion.png) no-repeat 0 0; width:471px; height:49px; /*font-size:40px;*/ /*font-weight:bold;*/ padding:0px; margin:0px; /*line-height:100%;*/ /*margin:0 0 16px 0;*/ } .contenedor_mas_informacion > ul { display:block; padding:0px; margin:0px; } .contenedor_mas_informacion ul li { display:block; width:471px; height:16px; margin:20px 0; list-style:none; padding:0px; } .contenedor_mas_informacion ul li a { display:block; text-indent:-9999px; display:block; width:471px; height:16px; outline:none; } #raza { background:url(../img/raza.png) no-repeat 0 0; } #sanitarias { background:url(../img/sanitarias.png) no-repeat 0 0; } #entrega { background:url(../img/entrega.png) no-repeat 0 0; }