Skip to content

Instantly share code, notes, and snippets.

View tobiasfabian's full-sized avatar

Tobias Wolf tobiasfabian

View GitHub Profile
@tobiasfabian
tobiasfabian / ce_image.css
Last active January 11, 2017 15:50 — forked from lucasdidthis/ce_image.css
Prevent Content-Shifting in Contao with automated proportion-calc (CSS)
figure > span:first-child{
display: block;
}
figure > span:first-child + img{
display: block;
transform: translateY(-100%);
}