[CSS]Table scrollable version display:sticky

NoSmoking

Table scrollable verticalement (Non compatible IExplorer)

Structure HTML de base

<div class="cadre-table-scroll">
  <table class="table-scroll">
    <thead>
      <tr>
        <th></th> <th></th> <th></th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td></td> <td></td> <td></td>
      </tr>
      <!-- la suite des données de la table -->
    </tbody>
    <tfoot>
      <tr>
        <td colspan="5"></td>
      </tr>
    </tfoot>
  </table>
</div>

La <table> est placée dans un conteneur, ici une <div>, afin de définir la hauteur d'affichage pour celle-ci.

Le rendu

PrénomNomDateEntrepriseFonction
PatriciaRay05/01/1981GeveeMechanical Systems Engineer
JamesThomas01/30/1978SkynoodleNurse Practicioner
GeraldHawkins01/22/1981VoonixNurse Practicioner
GaryHamilton08/19/1981ZoomboxAdministrative Officer
SarahFernandez04/13/1974PixobooPayment Adjustment Coordinator
BrendaCarpenter07/01/1978AvaveoStaff Accountant II
JoanAlvarez06/25/1966ZazioAssociate Professor
WandaHanson11/04/1984BrightdogCompensation Analyst
MartinTaylor02/17/1969YouspanEngineer III
BeverlyStanley11/25/1970DabtypeAssistant Media Planner
ChristophCasbourne9/13/1957Tejon Ranch CoServices
TrudaBertelmot11/11/1985Clipper Realty Inc.Accounting
DallonGoulding3/16/1977Goldman Sachs Group, Inc. (The)Research and Development
YoshikoDanielsky7/10/1997FB Financial CorporationBusiness Development
BerteDmitrienko11/17/1995Argan, Inc.Marketing
ValentijnMeadmore8/2/1993MGM Resorts InternationalHuman Resources
SuzyFlewett10/25/1980Ceragon Networks Ltd.Research and Development
MordecaiJerrams10/13/1965Silicom LtdTraining
ClausSamwyse11/25/1974Verizon Communications Inc.Accounting
RafaeliaPedrol4/18/1975Schneider National, Inc.Research and Development
LitaLisimore6/8/1988Simmons First National CorporationProduct Management
NoakMcPeice12/6/1974Eyegate Pharmaceuticals, Inc.Product Management
CraggyPortugal12/18/1989Roper Technologies, Inc.Sales
MadelleBartoszinski12/20/1958Honeywell International Inc.Legal
FrasquitoHarriagn9/24/1998ASB Bancorp, Inc.Accounting
BetteannFreegard5/5/1954Brookfield Property Partners L.P.Marketing
JacindaSheepy10/22/1989Landmark Infrastructure Partners LPEngineering
SigismundArnholtz9/16/1965Ellington Residential Mortgage REITResearch and Development
MyrleCromack5/7/1951First Cash, Inc.Research and Development
ZorinaMomford11/1/1961Cimpress N.VMarketing
Ceci n'est qu'un <tfoot>.

Le CSS pour le scroll

/*-- pour scroll actif --*/
.cadre-table-scroll {
  display: inline-block;
  height: 20em;
  overflow-y: scroll;
}
.table-scroll thead th {
  position: sticky;
  top: 0;
}
.table-scroll tfoot td {
  position: sticky;
  bottom: 0;
}

Le CSS cosmétique

Le CSS suivant est juste là pour « styler » la <table>.

.table-scroll {
}