<figure>
Inhalt der figure kommt hier hin
<figcaption>Ich bin eine figcaption</figcaption>
</figure>
<figure>
Inhalt der figure kommt hier hin
<figcaption>Ich bin eine figcaption</figcaption>
</figure>
/* No context defined. */
figure {
margin: 0 0 $spacer-md;
// Short figcaptions will be centered, long ones left aligned
text-align: center;
& img,
& video {
width: 100%;
}
}
figcaption {
@extend %heading-font-regular;
display: inline-block;
// Short figcaptions will be centered, long ones left aligned
text-align: left;
line-height: $paragraph-line-height-sm;
font-size: $font-size-xxs;
}
@media screen and (min-width: $grid-breakpoint-md) {
figcaption {
line-height: $paragraph-line-height-sm;
font-size: $font-size-base;
}
}
No notes defined.