You could add a
<span>
in the
<td>
and have that become visible/hidden depending on the maximum width of the screen. For example:
.only-when-small {
display: none;
}
@media (max-width: 787px) {
.only-when-small {
display: inline-block;
}
}
<td>
<span class="only-when-small">Price: </span> 20 USD
</td>