lo que trato de hacer es un index... una portada web pero
en vez de poner de una en una cada imagen en un div y terminarlo rapido
tengo un lienzo y dentro de ella varias imagenes como
esto
por tanto tengo que hacer que cada una de las imagenes dentro del lienzo aparezcan en cada div
aqui el codigo
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="es-es"> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <link href="style.css" type="text/css" rel="stylesheet"/>
Código CSS:
Ver original* {
margin: 0;
padding: 0;
border: 0;
position: relative;
}
html, body {
height: 100%;
background-image: url("img/tono2013.jpg");
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center center;
}
.contenedor {
width: 50%;
position: absolute;
top: 10%;
left: 25%;
}
.menu {
text-align: center;
background: #ff00ff;
}
.menu:before {
content: '';
display: inline-block;
margin-right: -0.25em;
}
.menu_1 {
background-image: url("../img/11.jpg");
display: inline-block;
width: 45%;
min-width: 60px;
padding: 5px 1%;
margin: 12px 1%;
border: #ff00ff solid 1px;
background: #f5f5f5;
text-align: left;
box-shadow: 0 0 15px 15px rgba(0,0,0,.2)
}
.anuario {
text-align: center;
background: #ff00ff;
}
.anuario:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: top;
margin-right: -0.25em;
}
.imagen {
background-image: url(img/11.jpg);
display: inline-block;
vertical-align: middle;
width: 12%;
min-width: 60px;
padding: 5px 1%;
margin: 2px 1%;
border: #a0a0a0 solid 1px;
background: #f5f5f5;
text-align: left;
box-shadow: 0 0 15px 15px rgba(0,0,0,.2)
}
.fiesta {
text-align: center;
background: #ff00ff;
}
.fiesta:before {
content: '';
display: inline-block;
margin-right: -0.25em;
}
.promocion {
background-image: url(img/11.jpg);
display: inline-block;
width: 28%;
min-width: 60px;
padding: 5px 1%;
margin: 12px 1%;
border: #a0a0a0 solid 1px;
background: #f5f5f5;
text-align: left;
box-shadow: 0 0 15px 15px rgba(0,0,0,.2)
}
.amigos {
text-align: center;
background: #ff00ff;
}
.amigos:before {
content: '';
display: inline-block;
margin-right: -0.25em;
}
.colegio {
background-image: url('../img/11.jpg');
display: inline-block;
width: 94%;
min-width: 60px;
padding: 5px 1%;
margin: 12px 1%;
border: #ff00ff solid 1px;
background: #f5f5f5;
text-align: left;
box-shadow: 0 0 15px 15px rgba(0,0,0,.2)
}
gracias...¡¡¡¡