I am working on a website to enhance my CSS skills using templates. Currently, I am creating a table with 8 attributes.
I am seeking advice on how to keep the table within the box borders without overflowing. I attempted to use overflow, but I believe I might be implementing it incorrectly. The template I am using is sourced from the internet.
I believe I need to make some modifications in tablesorter, but I am uncertain about the exact changes required.
#este .tablesorter {
width: inherit;
margin: -5px 0 0 0;
}
#este .tablesorter td{
margin: 0;
padding: 0;
border-bottom: 1px dotted #ccc;
}
#este .tablesorter thead tr {
height: 34px;
background: url(../images/table_sorter_header.png) repeat-x;
text-align: left;
text-indent: 10px;
cursor: pointer;
}
#este .tablesorter input[type=image] {
margin-right: 10px;
}
#este table.tablesorter thead tr .headerSortDown,
#este table.tablesorter thead tr .headerSortUp {
background-color: #8dbdd8;
}
You can view the code here: https://jsfiddle.net/3gnhfLLt/