1.

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?

Answer»

<STYLE>
table
{
background­color: yellow;
}
td
{
MARGIN: 0 10px 0 0;
}
</style>
<table>
<tr>
<td>HELLO WORLD</td>
</tr>
</table>

<style>
table
{
background­color: yellow;
}
td
{
margin: 0 10px 0 0;
}
</style>
<table>
<tr>
<td>Hello world</td>
</tr>
</table>



Discussion

No Comment Found