Below is the CSS code I am using:
td.tdhover input:hover,td.tdhover select:hover,td.tdhover textarea:hover{
background: #f2f5a9;
color:#ff0000;
}
td.tdhover select, td.tdhover input, td.tdhover textarea{
position:relative;
width:100%;
}
td.tdhover input.nobor,td.tdhover textarea.nobor{
border:none;
}
Now, here is the HTML code being utilized:
<table border="1" style="width:100%;">
<tr>
<td style="width:100px;">Poll Name </td>
<td style="width:5px;"><input type="text" class="nobor"></td>
<td class="tdhover"><input type="text"></td>
</tr>
</table>
The issue I am facing is that this setup appears to not be functioning in Chrome but works flawlessly in IE.