Is there a way to maintain the alignment of text in the output of the 'About' section even when the content changes dynamically? I want the new line to appear just below 'Lorem', but currently, it shifts below the colon(:). Since the length of the text can vary, using text-align to achieve this alignment is not suitable, as it also affects the position of the colon(:).
Any suggestions on how to achieve the desired alignment?
https://i.sstatic.net/DAjZn.png
<table>
<tr>
<td>
<div>Docteur</div>
</td>
<td>
<div>: Name of Doctor</div>
</td>
</tr>
<tr>
<td>
<div>About</div>
</td>
<td>
<div>: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad min </div>
</td>
</tr>
<tr>
<td>
<div>Location</div>
</td>
<td>
<div>: Some Location</div>
</td>
</tr>
</table>