Jessicahoney
New member
How to fix HTML Table width issue in Mobile view?
The following is the coffee I tried.
The following is the coffee I tried.
HTML:
<table>
<thead>
<th colspan="2">Product</th>
<th>Unit Price</th>
<th>Qty</th>
<th>Subtotal</th>
<th> </th>
</thead>
<tbody>
<tr>
<td>Image</td>
<td>Lorem ipsum dolor sit amet</td>
<td>31.23 USD</td>
<td>2 pcs</td>
<td>62.46 USD</td>
<td><a href="#">x</a></td>
</tr>
<tr>
<td>Image</td>
<td>Lorem ipsum dolor sit amet</td>
<td>31.23 USD</td>
<td>2 pcs</td>
<td>62.46 USD</td>
<td><a href="#">x</a></td>
</tr>
<tr>
<td>Image</td>
<td>Lorem ipsum dolor sit amet</td>
<td>31.23 USD</td>
<td>2 pcs</td>
<td>62.46 USD</td>
<td><a href="#">x</a></td>
</tr>
</tbody>