13
tbody 내부에 세로 스크롤이있는 100 % 너비의 HTML 테이블
<table>너비 를 100 %로 설정하고 <tbody>세로 스크롤 안에 만 높이를 넣을 수 있습니까? table { width: 100%; display:block; } thead { display: inline-block; width: 100%; height: 20px; } tbody { height: 200px; display: inline-block; width: 100%; overflow: auto; } <table> <thead> <tr> <th>Head 1</th> <th>Head 2</th> <th>Head 3</th> <th>Head 4</th> …