I'm currently utilizing Bootstrap and encountering an issue with aligning my "title" column in a table to the left. I've tried adjusting it but it doesn't seem to work as expected. Any suggestions on what might be missing here?
table td {
text-align: left;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Date </th>
<th>Time (IST)</th>
<th>Title</th>
<th>Speaker</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dec 17</td>
<td>13:00 pm to 14:00 pm</td>
<td>intro</td>
<td>me</td>
</tr>
<tr>
<td>Dec 17</td>
<td>14:00 pm to 16:00 pm</td>
<td>main topic</td>
<td></td>
</tr>
</tbody>
</table>
</div>
In the end, I might need some columns left-aligned and others right-aligned. Here is an example URL for reference: