당신이하려는 것은 헤더를 고정하고 본문 내용을 스크롤하는 것입니다. 콘텐츠를 두 방향으로 스크롤 할 수 있습니다.
- 수평 : 슬라이더 (예 : jQuery 슬라이더)를 사용하지 않는 한 콘텐츠를 수평으로 스크롤 할 수 없습니다. 이 경우 테이블을 사용하지 않는 것이 좋습니다.
- 수직으로 : 테이블의 레이아웃을
tbody
할당 display:block
하거나 display:inline-block
깨뜨리기 때문에 태그 로는이를 달성 할 수 없습니다 .
다음은 JSFiddle을 사용하는 솔루션입니다 divs
.
HTML :
<div class="wrap_header">
<div class="column">
Name
</div>
<div class="column">
Phone
</div>
<div class="clearfix"></div>
</div>
<div class="wrap_body">
<div class="sliding_wrapper">
<div class="serie">
<div class="cell">
AAAAAA
</div>
<div class="cell">
323232
</div>
<div class="clearfix"></div>
</div>
<div class="serie">
<div class="cell">
BBBBBB
</div>
<div class="cell">
323232
</div>
<div class="clearfix"></div>
</div>
<div class="serie">
<div class="cell">
CCCCCC
</div>
<div class="cell">
3435656
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
CSS :
.wrap_header{width:204px;}
.sliding_wrapper,
.wrap_body {width:221px;}
.sliding_wrapper {overflow-y:scroll; overflow-x:none;}
.sliding_wrapper,
.wrap_body {height:45px;}
.wrap_header,
.wrap_body {overflow:hidden;}
.column {width:100px; float:left; border:1px solid red;}
.cell {width:100px; float:left; border:1px solid red;}
/**
* @info Clearfix: clear all the floated elements
*/
.clearfix:after {
visibility:hidden;
display:block;
font-size:0;
content:" ";
clear:both;
height:0;
}
.clearfix {display:inline-table;}
/**
* @hack Display the Clearfix as a block element
* @hackfor Every browser except IE for Macintosh
*/
/* Hides from IE-mac \*/
* html .clearfix {height:1%;}
.clearfix {display:block;}
/* End hide from IE-mac */
설명:
당신은 sliding wrapper
모든 데이터를 포함한다.
다음 사항에 유의하십시오.
.wrap_header{width:204px;}
.sliding_wrapper,
.wrap_body {width:221px;}
스크롤바의 너비를 고려해야하기 때문에 17px의 차이가 있습니다.