Looking for the most effective way to utilize divs in order to create a table-like structure similar to this html table:
<table width="100%">
<tr>
<td align="right">
Name:
</td>
<td align="left">
Jennifer
</td>
</tr>
<tr>
<td align="right">
Age:
</td>
<td align="left">
19
</td>
</tr>
</table>
I've been struggling with text alignment no matter what method I use. This content needs to be contained within another div that has specific width, floats right, and is centered. Any help would be greatly appreciated.