1
0
Fork 0

Make figcaption self align to bottom

This is in case the image height is smaller than the figcaption.
Could be possible for text in other languages.
Flexbox is so cool.
This commit is contained in:
Lim Chee Aun 2023-10-03 22:15:15 +08:00
parent faa7ffc310
commit 8be2c738df

View file

@ -713,10 +713,11 @@
padding: 0;
display: flex;
flex-wrap: wrap;
align-items: flex-end;
/* align-items: flex-end; */
column-gap: 4px;
figcaption {
align-self: flex-end;
padding: 4px;
font-size: 90%;
color: var(--text-insignificant-color);