Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/guide/list-of-differences.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ It makes the page wider to accommodate large tables
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
/* Allow table cells to wrap text for better responsiveness */
.page:has(.widePage) td,
.page:has(.widePage) th {
white-space: normal !important;
word-wrap: break-word;
overflow-wrap: break-word;
min-width: 100px;
}

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Table cell wrapping ineffective

Medium Severity

overflow-wrap: break-word and white-space: normal only wrap when a cell already has a bounded width. These tables use display: block with horizontal scrolling, so columns still size to content. min-width: 100px sets a floor, not a ceiling, so long descriptions keep expanding the table and the narrow-screen overflow issue remains.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b8761e7. Configure here.

</style>

See a full list of differences between HyperFormula, Microsoft Excel, and Google Sheets.
Expand Down