﻿/* 기본값 Y축 */
.fixTableHead {
	overflow-y: auto;
	height: 600px;
	border-collapse: collapse;
}

/* Y축 sticky */
.fixTableHead thead th { position: sticky;top: 0;z-index: 1;}
.fixTableHead thead .head-two { position: sticky; top: 36px; }
.fixTableHead thead .head-three { position: sticky; top: 72px; }
.fixTableHead thead .head-four { position: sticky; top: 108px; }
.fixTableHead thead .head-five { position: sticky; top: 144px; }
.fixTableHead thead .head-six { position: sticky; top: 180px; }
.fixTableHead thead .head-seven { position: sticky; top: 216px; }

/* X축 sticky */
.fixTableHead tbody .leftFixed,
.fixTableHead thead .leftFixed {position: sticky;left: 0;z-index: 2;box-shadow: inset -1px 0px 1px #ccc;}
.fixTableHead thead .leftFixed {z-index: 3;}

