Moin,
kann es sein dass <figure> vom Browser ein Abstand von "1em" bekommt?
In meinem CSS Code steht davon nämlich nichts
.seite {
width:980px;
margin:0 auto;
}
div {
transition: all 1s ease;
}
figure {
position: relative;
float:left;
width: 310px;
height: 200px;
}
figure>div {
position: relative;
width: 310px;
height: 150px;
overflow: hidden;
z-index: 10;
}
figure>div:hover {
width: 310px;
height: 320px;
z-index: 10;
}
figure>div img {
z-index: 10;
}
figcaption {
display: block;
position: absolute;
width: 310px;
bottom: 5px;
z-index: 5;
}
figcaption span {
display: block;
}
.titel {
font-weight:bold;
margin-bottom:2px;
}
.bezeichnug {
font-size:14px;
color:#333;
}