FuckingNexacro
label 헤더
헤더
데이터그리드에서 열의 정보를 표시하는 영역을 헤더로 지정합니다.
warning 사용중인 CSS 프레임워크가 있을 경우 일부 CSS 가 의도치 않은대로 표현되거나 무시될 수 있습니다.
브라우저의 개발자도구를 이용해 CSS 의 충돌을 추적하여 CSS 를 보강하신 다음 사용하시길 권장합니다.css 항목마다 다른 색상을 사용하여 설명합니다.
헤더는 limegreen 색상을 사용합니다.
/* 순서는 header 와 body 각각 row > colgroup > col > cell 순서대로 배치됩니다. */ /* fn_header > fn_header_row > fn_header_colgroup > fn_header_cell */ /* fn_body > fn_body_row > fn_body_colgroup > fn_body_cell */ /* header 뿐만 아니라 body에도 동일하게 구분 가능 */ .fn_header_row.fn_row .fn_header_colgroup_fixed.fn_header_colgroup.fn_colgroup .fn_header_cell.fn_cell .fn_header_colgroup_unfixed.fn_header_colgroup.fn_colgroup .fn_header_cell.fn_cell .fn_header_colgroup_suffixed.fn_header_colgroup.fn_colgroup .fn_header_cell.fn_cell .fn_header .fn_row .fn_cell { background-color: limegreen; } .fn_header .fn_row .fn_header_colgroup_unfixed .fn_cell:nth-child(2) { background-color: unset; } /* 색을 부여하지 않으면 뒷 컨텐츠가 겹쳐보여져 시각을 해칩니다. */ .fn_header .fn_row .fn_header_colgroup_fixed .fn_cell:nth-child(2) { background-color: green; } /* colgroup 은 fixed, unfixed, suffix 3가지가 있으므로 구분해서 사용하셔야 합니다. */