Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Create an account below if you want to be able to make edits.

Template:Scrollable Math/styles.css

Template page
.scrollable-math {
    overflow-x: auto;
    max-width: 100%;
    padding: 4px 0;
}

/* Allow formulas to wrap correctly inside multi-line environments */
.scrollable-math math,
.scrollable-math .mwe-math-element {
    display: block;      /* Block so multi-line formulas are clean */
    white-space: normal; /* Allow line breaks inside cases/align */
}

/* Optional: prevent extremely wide formulas from breaking layout */
.scrollable-math math > .mwe-math-element {
    min-width: max-content;
}