When we list our data on websites, some time its required to change the color of row or column. Especially when its required to show large data in the tabular format. It makes listing more attractive and readable.
For Row:
Its simple just define row as given below:
<tr bgcolor="#FEFAC3" onmouseover="style.backgroundColor='#FEE698';" onmouseout="style.backgroundColor='#FEFAC3'">Website Development Company in Delhi</tr>
For Column: <td bgcolor="#FEFAC3" onmouseover="style.backgroundColor='#FEE698';" onmouseout="style.backgroundColor='#FEFAC3'"> Website Designing Company in Delhi</td>
Colors you can choose according your requirement and choice.
In updated version of this article I will define how to change color of row when rows have alternate colors..