CSS detached header table tricks: keep verticall scrollbar on screen and last cell go full width











up vote
0
down vote

favorite












I'm buindling a custom table with a detached header. That means the table rows content can be scrolled while the table header remain visible.



I'm almost there, except for 2 minor things I need to accomplish.



Problem 1: I need to keep my vertical bar visible at all time, but when I have more columns than the width, the horizontal scrollbar appears and send my vertical bar to the right side of the columns, making it disappear:



enter image description here



Problem 2: I need to be able to extend the last column to fill the whole width, even if there is space left:



enter image description here



I would rather use pure JavaScript, not jQuery.



JSFiddle



<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>


.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}


.container1 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container1 table tbody,
.container1 table thead {
display: block;
}

.container1 table tbody {
overflow-y: scroll;
height: 50px;
}



.container2 table,
.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
min-width: 50px;
max-width: 100%;
}


.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}









share|improve this question
























  • Try to look at this.. I don't know if this is what you want.
    – Shadow Fiend
    Sep 27 '17 at 1:30












  • Solve. Post as an aswer...
    – Mendes
    Sep 29 '17 at 0:06










  • Is that what you want?
    – Shadow Fiend
    Sep 29 '17 at 0:07












  • I've post it...
    – Shadow Fiend
    Sep 29 '17 at 0:20















up vote
0
down vote

favorite












I'm buindling a custom table with a detached header. That means the table rows content can be scrolled while the table header remain visible.



I'm almost there, except for 2 minor things I need to accomplish.



Problem 1: I need to keep my vertical bar visible at all time, but when I have more columns than the width, the horizontal scrollbar appears and send my vertical bar to the right side of the columns, making it disappear:



enter image description here



Problem 2: I need to be able to extend the last column to fill the whole width, even if there is space left:



enter image description here



I would rather use pure JavaScript, not jQuery.



JSFiddle



<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>


.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}


.container1 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container1 table tbody,
.container1 table thead {
display: block;
}

.container1 table tbody {
overflow-y: scroll;
height: 50px;
}



.container2 table,
.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
min-width: 50px;
max-width: 100%;
}


.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}









share|improve this question
























  • Try to look at this.. I don't know if this is what you want.
    – Shadow Fiend
    Sep 27 '17 at 1:30












  • Solve. Post as an aswer...
    – Mendes
    Sep 29 '17 at 0:06










  • Is that what you want?
    – Shadow Fiend
    Sep 29 '17 at 0:07












  • I've post it...
    – Shadow Fiend
    Sep 29 '17 at 0:20













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm buindling a custom table with a detached header. That means the table rows content can be scrolled while the table header remain visible.



I'm almost there, except for 2 minor things I need to accomplish.



Problem 1: I need to keep my vertical bar visible at all time, but when I have more columns than the width, the horizontal scrollbar appears and send my vertical bar to the right side of the columns, making it disappear:



enter image description here



Problem 2: I need to be able to extend the last column to fill the whole width, even if there is space left:



enter image description here



I would rather use pure JavaScript, not jQuery.



JSFiddle



<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>


.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}


.container1 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container1 table tbody,
.container1 table thead {
display: block;
}

.container1 table tbody {
overflow-y: scroll;
height: 50px;
}



.container2 table,
.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
min-width: 50px;
max-width: 100%;
}


.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}









share|improve this question















I'm buindling a custom table with a detached header. That means the table rows content can be scrolled while the table header remain visible.



I'm almost there, except for 2 minor things I need to accomplish.



Problem 1: I need to keep my vertical bar visible at all time, but when I have more columns than the width, the horizontal scrollbar appears and send my vertical bar to the right side of the columns, making it disappear:



enter image description here



Problem 2: I need to be able to extend the last column to fill the whole width, even if there is space left:



enter image description here



I would rather use pure JavaScript, not jQuery.



JSFiddle



<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>


.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}


.container1 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container1 table tbody,
.container1 table thead {
display: block;
}

.container1 table tbody {
overflow-y: scroll;
height: 50px;
}



.container2 table,
.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
min-width: 50px;
max-width: 100%;
}


.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}






javascript html css






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 10 at 19:23









halfer

14.2k757106




14.2k757106










asked Sep 27 '17 at 0:33









Mendes

4,357956131




4,357956131












  • Try to look at this.. I don't know if this is what you want.
    – Shadow Fiend
    Sep 27 '17 at 1:30












  • Solve. Post as an aswer...
    – Mendes
    Sep 29 '17 at 0:06










  • Is that what you want?
    – Shadow Fiend
    Sep 29 '17 at 0:07












  • I've post it...
    – Shadow Fiend
    Sep 29 '17 at 0:20


















  • Try to look at this.. I don't know if this is what you want.
    – Shadow Fiend
    Sep 27 '17 at 1:30












  • Solve. Post as an aswer...
    – Mendes
    Sep 29 '17 at 0:06










  • Is that what you want?
    – Shadow Fiend
    Sep 29 '17 at 0:07












  • I've post it...
    – Shadow Fiend
    Sep 29 '17 at 0:20
















Try to look at this.. I don't know if this is what you want.
– Shadow Fiend
Sep 27 '17 at 1:30






Try to look at this.. I don't know if this is what you want.
– Shadow Fiend
Sep 27 '17 at 1:30














Solve. Post as an aswer...
– Mendes
Sep 29 '17 at 0:06




Solve. Post as an aswer...
– Mendes
Sep 29 '17 at 0:06












Is that what you want?
– Shadow Fiend
Sep 29 '17 at 0:07






Is that what you want?
– Shadow Fiend
Sep 29 '17 at 0:07














I've post it...
– Shadow Fiend
Sep 29 '17 at 0:20




I've post it...
– Shadow Fiend
Sep 29 '17 at 0:20












2 Answers
2






active

oldest

votes

















up vote
0
down vote













Table with fixed header and scrolling in the body



I did a small function using pure javascript and made a slight modification in your html to include a scrollable div.






function setWidth(container) {
var
tds = document.querySelectorAll("." + container + " .scroll table tr:first-child td"),
ths = document.querySelectorAll("." + container + ">table tr:first-child th");
for (var i = 0; i < tds.length - 1; i++) {
ths[i].style.width = tds[i].clientWidth - 2 + 'px';
}
}
setWidth("container1");
setWidth("container2");

table {
font-size: 15px;
border-collapse: collapse;
margin: 0 0 -1px 0;
table-layout: fixed;
width: 100%;
}
td, th {
border: 1px solid black;
}
td:last-child,
th:last-child {
width: auto;
}
.scroll {
height: 50px;
overflow-y: scroll;
}
.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
}

<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>
</div>








share|improve this answer























  • I can´t see the solution for problem 1....
    – Mendes
    Sep 30 '17 at 11:46










  • So... try a clean solution like this: stackoverflow.com/a/20030304/3212427
    – Giovanni Mesquita
    Oct 2 '17 at 17:32


















up vote
0
down vote
















document.getElementById("tbody").addEventListener("scroll", myFunction);
function myFunction() {

var elmnt = document.getElementById("tbody");
var elmnt2 = document.getElementById("thead");

elmnt2.scrollLeft = elmnt.scrollLeft;

}

.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container1 {
width: 400px;
}

.container1 table tbody,
.container1 table thead {
display: block;

}
.container1 table thead{
width: 400px;
overflow-x:hidden;
}
.container1 table{
width: 400px;
}
.container1 table tbody {
height: 80px;
width: 400px;
overflow: scroll;
}

table {
margin: 0;
padding: 0;
}

.container2 table {
width: 100%;
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
}

.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
width: 100%;
}

.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table id="table1">
<thead id="thead">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody id="tbody">
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>








share|improve this answer





















  • Friend: nice answer, but my Problem1 seens not to be solved, as now my table has a fixed 400px width. I need the table to get full width of its container div (100%) and once scrolled horizontally to keep the vertical scroll bar visible.
    – Mendes
    Sep 30 '17 at 11:45










  • can you post a fiddle for with so I can look at it?
    – Shadow Fiend
    Sep 30 '17 at 11:51












  • how many columns you have?
    – Shadow Fiend
    Sep 30 '17 at 11:54










  • Here is the JSFiddle. I just need to mantain the vertical scrollbar always visible no matter where is the horizontal bar wihtout changing the table scructure. Repair that it has a fixed header - no matter what you do with the vertical bar, the header is maintened visible, and alto it gets full with of its container. In the fiddle the vertical bar is only visible if I scroll right the horizontal bar.
    – Mendes
    Sep 30 '17 at 12:10












  • is the width of your container fixed?
    – Shadow Fiend
    Sep 30 '17 at 13:02











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f46437709%2fcss-detached-header-table-tricks-keep-verticall-scrollbar-on-screen-and-last-ce%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote













Table with fixed header and scrolling in the body



I did a small function using pure javascript and made a slight modification in your html to include a scrollable div.






function setWidth(container) {
var
tds = document.querySelectorAll("." + container + " .scroll table tr:first-child td"),
ths = document.querySelectorAll("." + container + ">table tr:first-child th");
for (var i = 0; i < tds.length - 1; i++) {
ths[i].style.width = tds[i].clientWidth - 2 + 'px';
}
}
setWidth("container1");
setWidth("container2");

table {
font-size: 15px;
border-collapse: collapse;
margin: 0 0 -1px 0;
table-layout: fixed;
width: 100%;
}
td, th {
border: 1px solid black;
}
td:last-child,
th:last-child {
width: auto;
}
.scroll {
height: 50px;
overflow-y: scroll;
}
.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
}

<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>
</div>








share|improve this answer























  • I can´t see the solution for problem 1....
    – Mendes
    Sep 30 '17 at 11:46










  • So... try a clean solution like this: stackoverflow.com/a/20030304/3212427
    – Giovanni Mesquita
    Oct 2 '17 at 17:32















up vote
0
down vote













Table with fixed header and scrolling in the body



I did a small function using pure javascript and made a slight modification in your html to include a scrollable div.






function setWidth(container) {
var
tds = document.querySelectorAll("." + container + " .scroll table tr:first-child td"),
ths = document.querySelectorAll("." + container + ">table tr:first-child th");
for (var i = 0; i < tds.length - 1; i++) {
ths[i].style.width = tds[i].clientWidth - 2 + 'px';
}
}
setWidth("container1");
setWidth("container2");

table {
font-size: 15px;
border-collapse: collapse;
margin: 0 0 -1px 0;
table-layout: fixed;
width: 100%;
}
td, th {
border: 1px solid black;
}
td:last-child,
th:last-child {
width: auto;
}
.scroll {
height: 50px;
overflow-y: scroll;
}
.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
}

<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>
</div>








share|improve this answer























  • I can´t see the solution for problem 1....
    – Mendes
    Sep 30 '17 at 11:46










  • So... try a clean solution like this: stackoverflow.com/a/20030304/3212427
    – Giovanni Mesquita
    Oct 2 '17 at 17:32













up vote
0
down vote










up vote
0
down vote









Table with fixed header and scrolling in the body



I did a small function using pure javascript and made a slight modification in your html to include a scrollable div.






function setWidth(container) {
var
tds = document.querySelectorAll("." + container + " .scroll table tr:first-child td"),
ths = document.querySelectorAll("." + container + ">table tr:first-child th");
for (var i = 0; i < tds.length - 1; i++) {
ths[i].style.width = tds[i].clientWidth - 2 + 'px';
}
}
setWidth("container1");
setWidth("container2");

table {
font-size: 15px;
border-collapse: collapse;
margin: 0 0 -1px 0;
table-layout: fixed;
width: 100%;
}
td, th {
border: 1px solid black;
}
td:last-child,
th:last-child {
width: auto;
}
.scroll {
height: 50px;
overflow-y: scroll;
}
.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
}

<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>
</div>








share|improve this answer














Table with fixed header and scrolling in the body



I did a small function using pure javascript and made a slight modification in your html to include a scrollable div.






function setWidth(container) {
var
tds = document.querySelectorAll("." + container + " .scroll table tr:first-child td"),
ths = document.querySelectorAll("." + container + ">table tr:first-child th");
for (var i = 0; i < tds.length - 1; i++) {
ths[i].style.width = tds[i].clientWidth - 2 + 'px';
}
}
setWidth("container1");
setWidth("container2");

table {
font-size: 15px;
border-collapse: collapse;
margin: 0 0 -1px 0;
table-layout: fixed;
width: 100%;
}
td, th {
border: 1px solid black;
}
td:last-child,
th:last-child {
width: auto;
}
.scroll {
height: 50px;
overflow-y: scroll;
}
.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
}

<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>
</div>








function setWidth(container) {
var
tds = document.querySelectorAll("." + container + " .scroll table tr:first-child td"),
ths = document.querySelectorAll("." + container + ">table tr:first-child th");
for (var i = 0; i < tds.length - 1; i++) {
ths[i].style.width = tds[i].clientWidth - 2 + 'px';
}
}
setWidth("container1");
setWidth("container2");

table {
font-size: 15px;
border-collapse: collapse;
margin: 0 0 -1px 0;
table-layout: fixed;
width: 100%;
}
td, th {
border: 1px solid black;
}
td:last-child,
th:last-child {
width: auto;
}
.scroll {
height: 50px;
overflow-y: scroll;
}
.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
}

<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>
</div>





function setWidth(container) {
var
tds = document.querySelectorAll("." + container + " .scroll table tr:first-child td"),
ths = document.querySelectorAll("." + container + ">table tr:first-child th");
for (var i = 0; i < tds.length - 1; i++) {
ths[i].style.width = tds[i].clientWidth - 2 + 'px';
}
}
setWidth("container1");
setWidth("container2");

table {
font-size: 15px;
border-collapse: collapse;
margin: 0 0 -1px 0;
table-layout: fixed;
width: 100%;
}
td, th {
border: 1px solid black;
}
td:last-child,
th:last-child {
width: auto;
}
.scroll {
height: 50px;
overflow-y: scroll;
}
.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
}

<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>
</thead>
</table>
<div class="scroll">
<table>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>
</div>






share|improve this answer














share|improve this answer



share|improve this answer








edited Sep 27 '17 at 2:38

























answered Sep 27 '17 at 2:25









Giovanni Mesquita

1444




1444












  • I can´t see the solution for problem 1....
    – Mendes
    Sep 30 '17 at 11:46










  • So... try a clean solution like this: stackoverflow.com/a/20030304/3212427
    – Giovanni Mesquita
    Oct 2 '17 at 17:32


















  • I can´t see the solution for problem 1....
    – Mendes
    Sep 30 '17 at 11:46










  • So... try a clean solution like this: stackoverflow.com/a/20030304/3212427
    – Giovanni Mesquita
    Oct 2 '17 at 17:32
















I can´t see the solution for problem 1....
– Mendes
Sep 30 '17 at 11:46




I can´t see the solution for problem 1....
– Mendes
Sep 30 '17 at 11:46












So... try a clean solution like this: stackoverflow.com/a/20030304/3212427
– Giovanni Mesquita
Oct 2 '17 at 17:32




So... try a clean solution like this: stackoverflow.com/a/20030304/3212427
– Giovanni Mesquita
Oct 2 '17 at 17:32












up vote
0
down vote
















document.getElementById("tbody").addEventListener("scroll", myFunction);
function myFunction() {

var elmnt = document.getElementById("tbody");
var elmnt2 = document.getElementById("thead");

elmnt2.scrollLeft = elmnt.scrollLeft;

}

.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container1 {
width: 400px;
}

.container1 table tbody,
.container1 table thead {
display: block;

}
.container1 table thead{
width: 400px;
overflow-x:hidden;
}
.container1 table{
width: 400px;
}
.container1 table tbody {
height: 80px;
width: 400px;
overflow: scroll;
}

table {
margin: 0;
padding: 0;
}

.container2 table {
width: 100%;
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
}

.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
width: 100%;
}

.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table id="table1">
<thead id="thead">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody id="tbody">
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>








share|improve this answer





















  • Friend: nice answer, but my Problem1 seens not to be solved, as now my table has a fixed 400px width. I need the table to get full width of its container div (100%) and once scrolled horizontally to keep the vertical scroll bar visible.
    – Mendes
    Sep 30 '17 at 11:45










  • can you post a fiddle for with so I can look at it?
    – Shadow Fiend
    Sep 30 '17 at 11:51












  • how many columns you have?
    – Shadow Fiend
    Sep 30 '17 at 11:54










  • Here is the JSFiddle. I just need to mantain the vertical scrollbar always visible no matter where is the horizontal bar wihtout changing the table scructure. Repair that it has a fixed header - no matter what you do with the vertical bar, the header is maintened visible, and alto it gets full with of its container. In the fiddle the vertical bar is only visible if I scroll right the horizontal bar.
    – Mendes
    Sep 30 '17 at 12:10












  • is the width of your container fixed?
    – Shadow Fiend
    Sep 30 '17 at 13:02















up vote
0
down vote
















document.getElementById("tbody").addEventListener("scroll", myFunction);
function myFunction() {

var elmnt = document.getElementById("tbody");
var elmnt2 = document.getElementById("thead");

elmnt2.scrollLeft = elmnt.scrollLeft;

}

.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container1 {
width: 400px;
}

.container1 table tbody,
.container1 table thead {
display: block;

}
.container1 table thead{
width: 400px;
overflow-x:hidden;
}
.container1 table{
width: 400px;
}
.container1 table tbody {
height: 80px;
width: 400px;
overflow: scroll;
}

table {
margin: 0;
padding: 0;
}

.container2 table {
width: 100%;
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
}

.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
width: 100%;
}

.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table id="table1">
<thead id="thead">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody id="tbody">
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>








share|improve this answer





















  • Friend: nice answer, but my Problem1 seens not to be solved, as now my table has a fixed 400px width. I need the table to get full width of its container div (100%) and once scrolled horizontally to keep the vertical scroll bar visible.
    – Mendes
    Sep 30 '17 at 11:45










  • can you post a fiddle for with so I can look at it?
    – Shadow Fiend
    Sep 30 '17 at 11:51












  • how many columns you have?
    – Shadow Fiend
    Sep 30 '17 at 11:54










  • Here is the JSFiddle. I just need to mantain the vertical scrollbar always visible no matter where is the horizontal bar wihtout changing the table scructure. Repair that it has a fixed header - no matter what you do with the vertical bar, the header is maintened visible, and alto it gets full with of its container. In the fiddle the vertical bar is only visible if I scroll right the horizontal bar.
    – Mendes
    Sep 30 '17 at 12:10












  • is the width of your container fixed?
    – Shadow Fiend
    Sep 30 '17 at 13:02













up vote
0
down vote










up vote
0
down vote












document.getElementById("tbody").addEventListener("scroll", myFunction);
function myFunction() {

var elmnt = document.getElementById("tbody");
var elmnt2 = document.getElementById("thead");

elmnt2.scrollLeft = elmnt.scrollLeft;

}

.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container1 {
width: 400px;
}

.container1 table tbody,
.container1 table thead {
display: block;

}
.container1 table thead{
width: 400px;
overflow-x:hidden;
}
.container1 table{
width: 400px;
}
.container1 table tbody {
height: 80px;
width: 400px;
overflow: scroll;
}

table {
margin: 0;
padding: 0;
}

.container2 table {
width: 100%;
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
}

.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
width: 100%;
}

.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table id="table1">
<thead id="thead">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody id="tbody">
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>








share|improve this answer















document.getElementById("tbody").addEventListener("scroll", myFunction);
function myFunction() {

var elmnt = document.getElementById("tbody");
var elmnt2 = document.getElementById("thead");

elmnt2.scrollLeft = elmnt.scrollLeft;

}

.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container1 {
width: 400px;
}

.container1 table tbody,
.container1 table thead {
display: block;

}
.container1 table thead{
width: 400px;
overflow-x:hidden;
}
.container1 table{
width: 400px;
}
.container1 table tbody {
height: 80px;
width: 400px;
overflow: scroll;
}

table {
margin: 0;
padding: 0;
}

.container2 table {
width: 100%;
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
}

.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
width: 100%;
}

.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table id="table1">
<thead id="thead">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody id="tbody">
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>








document.getElementById("tbody").addEventListener("scroll", myFunction);
function myFunction() {

var elmnt = document.getElementById("tbody");
var elmnt2 = document.getElementById("thead");

elmnt2.scrollLeft = elmnt.scrollLeft;

}

.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container1 {
width: 400px;
}

.container1 table tbody,
.container1 table thead {
display: block;

}
.container1 table thead{
width: 400px;
overflow-x:hidden;
}
.container1 table{
width: 400px;
}
.container1 table tbody {
height: 80px;
width: 400px;
overflow: scroll;
}

table {
margin: 0;
padding: 0;
}

.container2 table {
width: 100%;
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
}

.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
width: 100%;
}

.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table id="table1">
<thead id="thead">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody id="tbody">
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>





document.getElementById("tbody").addEventListener("scroll", myFunction);
function myFunction() {

var elmnt = document.getElementById("tbody");
var elmnt2 = document.getElementById("thead");

elmnt2.scrollLeft = elmnt.scrollLeft;

}

.container1 table,
.container1 th,
.container1 td {
background-color: white;
padding: 5px;
font-size: 15px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container1 {
width: 400px;
}

.container1 table tbody,
.container1 table thead {
display: block;

}
.container1 table thead{
width: 400px;
overflow-x:hidden;
}
.container1 table{
width: 400px;
}
.container1 table tbody {
height: 80px;
width: 400px;
overflow: scroll;
}

table {
margin: 0;
padding: 0;
}

.container2 table {
width: 100%;
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
}

.container2 th,
.container2 td {
background-color: white;
padding: 5px;
font-size: 16px;
border: 1px solid black;
border-collapse: collapse;
min-width: 50px;
max-width: 50px;
}

.container2 th:last-child,
.container2 td:last-child {
background-color: yellow;
width: 100%;
}

.container2 {
max-width: 100%;
width: 100%;
overflow-x: scroll;
}

.container2 table tbody,
.container2 table thead {
display: block;
}

.container2 table tbody {
overflow-y: scroll;
height: 50px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
Problem 1: How to keep the vertical scrollbar on view
</p>

<div class="container1">
<table id="table1">
<thead id="thead">
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
</tr>

</thead>
<tbody id="tbody">
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
<td>Data 8</td>
</tr>

</tbody>
</table>
</div>


<p>
Problem 2: How to make the last cell go full width
</p>

<div class="container2">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
</tr>

</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
<td>Data 4</td>
<td>Data 5</td>
</tr>

</tbody>
</table>
</div>






share|improve this answer












share|improve this answer



share|improve this answer










answered Sep 29 '17 at 0:19









Shadow Fiend

1,7171413




1,7171413












  • Friend: nice answer, but my Problem1 seens not to be solved, as now my table has a fixed 400px width. I need the table to get full width of its container div (100%) and once scrolled horizontally to keep the vertical scroll bar visible.
    – Mendes
    Sep 30 '17 at 11:45










  • can you post a fiddle for with so I can look at it?
    – Shadow Fiend
    Sep 30 '17 at 11:51












  • how many columns you have?
    – Shadow Fiend
    Sep 30 '17 at 11:54










  • Here is the JSFiddle. I just need to mantain the vertical scrollbar always visible no matter where is the horizontal bar wihtout changing the table scructure. Repair that it has a fixed header - no matter what you do with the vertical bar, the header is maintened visible, and alto it gets full with of its container. In the fiddle the vertical bar is only visible if I scroll right the horizontal bar.
    – Mendes
    Sep 30 '17 at 12:10












  • is the width of your container fixed?
    – Shadow Fiend
    Sep 30 '17 at 13:02


















  • Friend: nice answer, but my Problem1 seens not to be solved, as now my table has a fixed 400px width. I need the table to get full width of its container div (100%) and once scrolled horizontally to keep the vertical scroll bar visible.
    – Mendes
    Sep 30 '17 at 11:45










  • can you post a fiddle for with so I can look at it?
    – Shadow Fiend
    Sep 30 '17 at 11:51












  • how many columns you have?
    – Shadow Fiend
    Sep 30 '17 at 11:54










  • Here is the JSFiddle. I just need to mantain the vertical scrollbar always visible no matter where is the horizontal bar wihtout changing the table scructure. Repair that it has a fixed header - no matter what you do with the vertical bar, the header is maintened visible, and alto it gets full with of its container. In the fiddle the vertical bar is only visible if I scroll right the horizontal bar.
    – Mendes
    Sep 30 '17 at 12:10












  • is the width of your container fixed?
    – Shadow Fiend
    Sep 30 '17 at 13:02
















Friend: nice answer, but my Problem1 seens not to be solved, as now my table has a fixed 400px width. I need the table to get full width of its container div (100%) and once scrolled horizontally to keep the vertical scroll bar visible.
– Mendes
Sep 30 '17 at 11:45




Friend: nice answer, but my Problem1 seens not to be solved, as now my table has a fixed 400px width. I need the table to get full width of its container div (100%) and once scrolled horizontally to keep the vertical scroll bar visible.
– Mendes
Sep 30 '17 at 11:45












can you post a fiddle for with so I can look at it?
– Shadow Fiend
Sep 30 '17 at 11:51






can you post a fiddle for with so I can look at it?
– Shadow Fiend
Sep 30 '17 at 11:51














how many columns you have?
– Shadow Fiend
Sep 30 '17 at 11:54




how many columns you have?
– Shadow Fiend
Sep 30 '17 at 11:54












Here is the JSFiddle. I just need to mantain the vertical scrollbar always visible no matter where is the horizontal bar wihtout changing the table scructure. Repair that it has a fixed header - no matter what you do with the vertical bar, the header is maintened visible, and alto it gets full with of its container. In the fiddle the vertical bar is only visible if I scroll right the horizontal bar.
– Mendes
Sep 30 '17 at 12:10






Here is the JSFiddle. I just need to mantain the vertical scrollbar always visible no matter where is the horizontal bar wihtout changing the table scructure. Repair that it has a fixed header - no matter what you do with the vertical bar, the header is maintened visible, and alto it gets full with of its container. In the fiddle the vertical bar is only visible if I scroll right the horizontal bar.
– Mendes
Sep 30 '17 at 12:10














is the width of your container fixed?
– Shadow Fiend
Sep 30 '17 at 13:02




is the width of your container fixed?
– Shadow Fiend
Sep 30 '17 at 13:02


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f46437709%2fcss-detached-header-table-tricks-keep-verticall-scrollbar-on-screen-and-last-ce%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

鏡平學校

ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

Why https connections are so slow when debugging (stepping over) in Java?