Remove The Bottom Margin of a Handsontable

Remove cell padding on top and bottom

It is not a padding. Cells in row have always the same height. In your example "padding is caused by cell that is previous to "Reviewed by" - it has height set to 81px. If browser window is small "padding" is coming from word wrap in "date" cell

Initial width of handsontable is not well set in a flexbox

There is css overflow-y:auto in .ht_clone_left .wtHolder. So just add below code in css to remove it. It will solved your problem hope so..

  .wtHolder {
width: 100% !important;
}

.ht_clone_left .wtHolder {
overflow:hidden;
}

Added this jsbin for you..please look at it..

How to remove the default table border/spacing/padding?

make your code as below:

<table style="background-color: blue;" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
</td>
</tr>
</table>


Related Topics



Leave a reply



Submit