I can't seem to get the little space between the rows to close.
The space did decrease after using border-collapse: collapse; but there is still a tiny bit left.
table {
border-radius: 20px;
overflow: hidden;
border-collapse: collapse;
}
img {
display: block;
width: 300px;
min-width: 300px;
max-width: 1440px;
}
.text-container {
width: 300px;
min-width: 300px;
max-width: 1440px;
}
<table>
<tr>
<td class="img-container">
<img src="images/image-product-desktop.jpg" alt="image-product-desktop-version" />
</td>
<td class="text-container">
<h3 class="title1">PERFUME</h3>
<h2 class="title2"><b>Gavrielle Essence Eau De Parfum</b></h2>
<p class="description-text">
A floral, solar and voluptuous interpretation composed by Olivier Polge, Perfumer-Creator for the House of CHANEL.
</p>
<div class="both-prices">
<h2 class="new-price">$149.99</h2>
<h4 class="old-price">$169.99</h4>
</div>
<a class="cart-btn" href="#"><span></span>Add to cart</a>
</td>
</tr>
</table>