⟩ How would you declare an inline css to format the table with a background color of yellow and give the table cell a right margin of 10 pixels?
<style>
table {
background-color: yellow;
}
td {
margin: 0 10px 0 0;
}
</style>
<table>
<tr>
<td>Hello world</td>
</tr>
</table>