Search.../

Collapsible Text CSS Classes

Note: This feature is only available to Wix Studio users.

You can use the classes listed below to style your CollapsibleText elements with CSS.

For more information on styling your elements with CSS, see Styling Elements with CSS and the MDN CSS reference docs.

Important: Element structure and undocumented class names may change without advance warning. To avoid unintended style changes to your site, select elements with the documented class names only.

.collapsible-text

Targets collapsible text elements. For example:

.collapsible-text {
display: flex;
flex-flow: column-reverse;
}
css | Copy Code

.collapsible-text__button

Targets collapsible text button elements. For example:

.collapsible-text__button {
width: 200px;
cursor: default;
background-color: #116dff;
}
css | Copy Code

.collapsible-text__text

Targets text in collapsible text elements. For example:

.collapsible-text__text {
font-family: sans-serif;
font-weight: 700;
color: black;
}
css | Copy Code

Was this helpful?