Estimado, es un tema de
style de tu tabla, no de Chrome.
En el CSS tenés que usar table-header-group
Recomiendo buscar el término para aprender a usarlo. Te dejo algunos enlaces.
Algunos términos relevantes:
display: table-header-group | table-row-group | table-footer-group
Un ejemplo suelto:
<style type="text/css" media="print,screen" > th { font-family:Arial; color:black; background-color:lightgrey; } thead { display:table-header-group; } tbody { display:table-row-group; } </style>