|
PARA RESOLVER EL PROBLEMA DEL DESPLAZAMIENTO DEL GIF
#logo {
float: left;
width: 111px;
height: 110px;
margin: 93px 940px 0 317px;
background: url(../images/star.gif) no-repeat;
}
Deberías añadir en tu hoja de estilos (fíjate en las propiedades):
#freno {
font-size: 0px;
clear: both;
height: 1px;
width: 0px;
}
Y EN EL HTML
<div id="logo">Aquí se inserta el GIF o lo que sea
<div id="freno"></div></div>
|