All Collections
Super How to's
Style and Layout
How to wrap/display the gallery card property content
How to wrap/display the gallery card property content
Cam Incoll avatar
Written by Cam Incoll
Updated over a week ago

Here is some CSS code that will wrap the text of Notion Card Properties when displayed in a Gallery in Super:

.notion-collection-card__content .notion-property__text .notion-semantic-string {
overflow-x: visible;
overflow-y: visible;
white-space: normal;
text-overflow: initial;
display: inline;
}

Please add this to the CSS tab in the Code section.

Did this answer your question?