I need to leave a minimum size in the description column so that very large descriptions break a few lines, I know only to put the fixed size, but not the least it can reach
ps: she's responsive!
There is property min-height
of css.
What you can do is create a class with this property:
.foo {
min-height: 300px;
}
As suggested in this post: link