Having trouble with getting the round css to work properly in the below code
It seems to be only applying the background color, but not the border styling
The border code is on the same line as the round css:
style=" border : 1px solid #D6D6D6;
and the round css is defined below
.Round {
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
}
<table border="1" width="100%" height="100%" style="border-collapse:collapse; position: fixed; top: 0; right: 0; left: 0;">
<tr height="20%" style="background-color:#3D4552;">
<th colspan="3" class="shadow">
<asp:Panel ID="Panel2" runat="server" style="top: 15px; left: 92px; position: absolute; height: 55px; width: 10%;">
<asp:Image ID="Image1" ImageUrl="~/Images/CasePROLogoweb.jpg" runat="server" />
</asp:Panel>
</th>
</tr>
<tr height="10%">
<td colspan="3"></td>
</tr>
<tr height="45%">
<td width="30%"></td>
<td width="40%" style=" border : 1px solid #D6D6D6; " class="Round">' Here is the class for round
</td>
<td width="30%"></td>
</tr>
<tr height="25%">
<td colspan="3" colspan="8" align="center" style="font-family: Calibri; font-size: 40pt; color: #FFFFFF">
</td>
</tr>
</table>