0
Hi Manas,
Challenge here is i don't want to cellspacing/padding zero and don't want to collapse border as
it will effect other rows in table.
Regards
Shehzad
0
Hi Arul,
As mentioned in my question i don't want to collapse border.
Regards
Shehzad
0
Hi Manas,
Below is the sample code and image.
FYI I am also using Jquery in the application.
Regards
Shehzad
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table cellspacing = "5" cellpadding="8" style="border: 2px solid green">
<tr>
<td>
ONE
</td>
<td>
ONE
</td>
<td>
ONE
</td>
</tr>
<tr>
<td>
TWO
</td>
<td>
TWO
</td>
<td>
TWO
</td>
</tr>
<tr style="background-color:yellow">
<td>
THREE
</td>
<td>
THREE
</td>
<td>
THREE
</td>
</tr>
<tr>
<td>
FOUR
</td>
<td>
FOUR
</td>
<td>
FOUR
</td>
</tr>
<tr>
<td>
FIVE
</td>
<td>
FIVE
</td>
<td>
FIVE
</td>
</tr>
</table>
</body>
</html>

0
Can you share the code how are trying to set Background color to yellow.
0
Hi,
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr bgcolor="#FF0000">
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<p>The bgcolor attribute is not supported in HTML5. Use CSS instead.</p>
</body>
</html>
Reference :
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_tr_bgcolor
0
Try this code
<table>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="First Name"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
</tr>
<tr style="background-color: yellow">
<td>
<asp:Label ID="Label2" runat="server" Text="Last Name"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</td>
</tr>
</table>
Let me know for any thing more....
If your problem solved means kindly Accept my answer