Simple style in order to bring the header of tables down when you scroll, works for the legacy vector 2010 wikipedia appearance
Wikipedia sticky table header (Vector legacy 2010) by trium
Details
Authortrium
LicenseCC0-1.0
Categorywikipedia.org
Created
Updated
Size615 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Simple style in order to bring the header of tables down when you scroll. Prevents you from having to scroll up in order to see what the title of a particular value of a cell is. Try it on e.g. this page https://en.wikipedia.org/wiki/Comparison_of_digital_SLRs
Source code
/* ==UserStyle==
@name Wikipedia bring down table header when scrolling
@namespace USO Archive
@author trium
@description `Simple style in order to bring the header of tables down when you scroll. Prevents you from having to scroll up in order to see what the title of a particular value of a cell isTry it on e.g. this page https://en.wikipedia.org/wiki/Comparison_of_digital_SLRs`
@version 20210929.9.55
@license CC0-1.0
@preprocessor uso
==/UserStyle== */
@-moz-document domain('wikipedia.org'){
thead {
position:sticky !important;
top: 0px;
}
}