How can I align the first column to the right and second column to the left and padded 10px with CSS?
<table>
<tbody>
<tr><td align="right">Skype:</td><td align="left"> sent</td></tr>
<tr><td align="right">Tel:</td><td align="left"> +343 343 4343</td></tr>
<tr><td align="right">e-mail:</td><td align="left"> info@example.com</td></tr>
<tr><td></td><td align="left"> example@gmail.com</td></tr>
</tbody>
</table>
You could use the
:first-childselector, like this:No aligning is needed in your table anymore.