Resize row height in table

Is it possible to resize the row height in a table? Mine seems to be static after creation.

You can do this via css. Create a new stylesheet or write it in the default.css.

Example code:

#table_1 td {
vertical-align: top !important;
height: 16mm !important;
}

#table_1 tr {
height: 16mm !important;
}