How to leave column minimum size of a table in css

0

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!

    
asked by anonymous 28.09.2017 / 23:19

1 answer

0

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

    
28.09.2017 / 23:46