Hola, bueno tengo un problema, no es exactamente el titulo pero parecido:
Tengo 2 divs, una de ellas de 800px y dentro otra que esta separada de la anterior pues unos 80px por todos los lados.
El caso es que cada esquina y todos los bordes tienen una imagen, pero nose como colocar cada imagen en su sitio, usando un "float" o "position", el codigo de momento este:
HTML:
<div id="frametopleft">
</div>
<div id="bordertop">
</div>
<div id="frametopright">
</div>
<div id="borderright">
</div>
<div id="framebottomleft">
</div>
<div id="borderbottom">
</div>
<div id="framebottomright">
</div>
<div id="borderleft">
</div>
CSS:
#frametopleft {background-image: url(objetos/border-top-left.png) ;
background-repeat: no-repeat ;
height: 84px ;
width: 132px ;
position: top left}
#frametopright {background-image: url(objetos/frame-top-right.png) ;
background-repeat: no-repeat ;
height: 84px ;
width: 132px ;
position: top right}
#framebottomleft {background-image: url(objetos/frame-top-left.png) ;
background-repeat: no-repeat ;
height: 132px ;
width: 84px ;
float:bottom left}
#framebottomright {background-image: url(objetos/frame-top-left.png) ;
background-repeat: no-repeat ;
height: 132px ;
width: 84px ;
float: bottom right}
#bordertop {background-image: url(objetos/border-top.png) ;
background-repeat: repeat-x ;
height: 82px ;
width: 538px ;
float:top}
#borderleft {background-image: url(objetos/border-left.png) ;
background-repeat: repeat-y ;
width: 82px ;
position: left}
#borderright {background-image: url(objetos/border-right.png) ;
background-repeat: repeat-y ;
width: 82px ;
position: right}
#borderbottom {background-image: url(objetos/border-bottom.png) ;
background-repeat: repeat-x ;
height: 82px ;
width: 538px ;
position: bottom}



Citar







Marcadores