Om nah hoo pez nyeetz, Matthias Apsel!
Om nah hoo pez nyeetz, freestyler!
Mich quält dieses Problem schon Tage und ich komm nicht dahinter....
Ein Bild soll seine Höhe an sein Geschwisterelement vererben.
<figure>
<img src="…" alt="…">
<figcaption>Langer Text zum Bild, vielleicht besser p?</figcaption>
<figure>
>
> ~~~css
figure {
> position: relative;
> }
> img {
> display: table-cell;
> }
> figcaption {
> position: absolute;
> top: 0;
> bottom: 0;
> overflow-y: scroll;
> padding-left: Breite des Bildes :-(
> }
und auch seine Breite
figure {
position: relative;
display: table-cell;
}
img {
display: table-cell;
}
figcaption {
position: absolute;
top: 0;
bottom: 0;
left: 105%;
right: -105%;
overflow-y: auto;
}
Matthias