Here is a sample I'd like to share with you:
CODE HTML:
<table class="table prospects-table">
<thead>
<tr>
<th width="200">Name</th>
<th width="200">Email</th>
<th width="200">Phone</th>
<th width="200">Message</th>
<th width="200">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td width="200">test sdada</td>
<td width="200"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="b2d3c1d6c1d3d6d3f2cbd3dadddd9cd1dddf">[email protected]</a></td>
<td width="200">(321) 312-3123</td>
<td width="200"> sadasda</td>
<td width="200">
<div class="in-line">
<i class="fa fa-pencil-square-o"></i>
<a href="http://192.168.0.105/user/editenewleed/22"><span>Edit</span></a>
</div>
<div class="in-line">
<i class="fa fa-users "></i>
<a href="http://192.168.0.105/user/addpatientfromnewlead/22"><span>Transfer</span></a>
</div>
<div class="in-line">
<i class="fa fa-trash-o"></i>
<a href="http://192.168.0.105/user/deletenewleed/22"><span>Delete</span></a>
</div>
</td></tr>
<tr>
<td width="200">Diaconescu Cristian</td>
<td width="200"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="036270677062677062436176707766606c2d716b">[email protected]</a></td>
<td width="200">(312) 312-3123</td>
<td width="200">asdasadsdasasasasasdkhsdjkashsdkjahdhjsgdhjgvhhs,ajfkghjkdjhdsgjhasdghjgsadhjgshjkhvjgjkgfkjhdkjjhgfhjkdhkjsgdfv</td>
<td width="200">
<div class="in-line">
<i class="fa fa-pencil-square-o"></i>
<a href="http://192.168.0.105/user/editenewleed/24"><span>Edit</span></a>
</div>
<div class="in-line">
<i class="fa fa-users "></i>
<a href="http://192.168.0.105/user/addpatientfromnewlead/24"><span>Transfer</span></a>
</div>
<div class="in-line">
<i class="fa fa-trash-o"></i>
<a href="http://192.168.0.105/user/deletenewleed/24"><span>Delete</span></a>
</div>
</td></tr>
</tbody>
</table>
I'm currently facing an issue where the columns in my table are not displaying at a width of 200px as intended.
I attempted to specify the width using the following code within each td tag, but it doesn't seem to be working...
<td width="200">test sdada</td>
Can someone please assist me in identifying the problem and offering a solution?
Your help is greatly appreciated!