I am trying to show some details of a receive in a table.
I want that table to have a min height to show the products. So if there is only one product, the table wou
The solution without div is used a pseudo element like ::after into first td in row with min-height. Save your HTML clean.
div
::after
td
min-height
table tr td:first-child::after { content: ""; display: inline-block; vertical-align: top; min-height: 60px; }