Trying to adjust the background image of each data cell to a selected image has been challenging. Using the method displayed below, only the top left corner of the photo appears.
The code snippet demonstrates setting the background of each data cell to the designated image. It seems that additional styling may be required for the class. Do you have any insights on what that might entail?
.example {
background-image: url("https://i.ytimg.com/vi/MPV2METPeJU/maxresdefault.jpg");
}
<table class="example">
<tr>
<td>
<p> ONE </p>
</td>
<td>
<p> TWO </p>
</td>
</tr>
</table>