I am attempting to create a table with two columns for questions and answers. The first column should only display the question number, aligning the actual question and answer in the second column.
However, I prefer the question number to be next to the question text to form one cohesive sentence. Unfortunately, the first column containing the number is occupying more width than necessary.
Is there a way to adjust the width of the first column to only take up the space it requires?
.title {
font-size: 24px;
font-weight: 500;
letter-spacing: .3px;
padding-bottom: 32px;
color: #333;
}
<table border="0" cellpadding="0" cellspacing="0" class="faq" width="666">
<tbody>
<tr>
<td class="title">FAQ</td>
</tr>
<tr>
<td class="question">1.</td>
<td class="question">What happens when the wild tigers purr?</td>
</tr>
<tr>
<td> </td>
<td class="answer">Sixty-Four comes asking for bread. If Purple People Eaters are real… where do they find purple people to eat?</td>
</tr>
</tbody>
</table>