Browser compatibility section, browser row should be sticky #298
Unanswered
vinzusama
asked this question in
Design system
Replies: 1 comment 4 replies
-
Agreed, it seems since December 2023 I've been using MDN with this userstyle applied (via the Stylus extension): @-moz-document domain("developer.mozilla.org") {
figure.table-container {
overflow: visible;
}
table.bc-table {
position: relative;
}
table.bc-table thead {
position: sticky;
top: 97px;
z-index: 500;
background-color: var(--background-primary);
}
} It's an immense help on pages like https://developer.mozilla.org/en-US/docs/Web/API/Element where the BC table is HUGE. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
It's not something big, really, but I think it would be good that the browser row, inside the full browser compatibility table should be sticky.
In case of long (loooong) table correspondences, you rapidely find yourself with the hidden. So you have to either memorize the correspondig row of each browser, or to scroll to top than back to the line you were looking for.
See an exemple :
(https://developer.mozilla.org/en-US/docs/Web/CSS/length#browser_compatibility)
And since the browser's row is pretty big, it could be great to stick just the browser's icons on scroll, in my opinion.
Beta Was this translation helpful? Give feedback.
All reactions