How to create a layout show image box and text box in front of the image boxes in the same with the layout in this picture:
Thank you very much.
.item {
width: 150px;
height: 300px;
}
.issue_item.not_image {
width: 150px;
height: 300px;
background-color: #FF3800;
}
.issue_item {
width: 100%;
height: 100%;
}
.issue_item .issue_item_image {
max-width: 100%;
width: 100%;
max-height: 100%;
}
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" />
<table>
<tbody>
<tr>
<th></th>
<th>B BRAND</th>
<th>C BRAND</th>
<th>D BRAND</th>
<th>E BRAND</th>
</tr>
<tr>
<td>
<div class="issue_item not_image"></div>
</td>
<td>
<div class="issue_item"><img class="issue_item_image" src="https://i.ibb.co/MPQ6ww8/B-Brand.png" /></div>
</td>
<td>
<div class="issue_item"><img class="issue_item_image" src="https://i.ibb.co/9HhhhV7/C-Brand.png" /></div>
</td>
<td>
<div class="issue_item"><img class="issue_item_image" src="https://i.ibb.co/9vvRdQP/D-Brand.png" /></div>
</td>
<td>
<div class="issue_item"><img class="issue_item_image" src="https://i.ibb.co/n6RFPLL/E-Brand.png" /></div>
</td>
</tr>
</tbody>
</table>
