Table CSS 简单样式

<table border="1" style="border-collapse: collapse" cellpadding="1" cellspacing="1" bordercolor="#CCCCCC">
                <tr align="center">
                    <td class="style10">
                        层号
                    </td>
                    <asp:Repeater ID="rep" runat="server">
                        <ItemTemplate>
                            <td style="background: #DAE1E8; 35px;">
                                <%# Eval("GetLayer_No")%>
                            </td>
                        </ItemTemplate>
                    </asp:Repeater>
                </tr>
                <tr align="center">
                    <td class="style10">
                        部门代码
                    </td>
                    <asp:Repeater ID="rep2" runat="server">
                        <ItemTemplate>
                            <td  style=" 35px; background-color: White;height: 19px;">
                                <%# Eval("GetLayer_Len")%>
                            </td>
                        </ItemTemplate>
                    </asp:Repeater>
                </tr>
            </table>
原文地址:https://www.cnblogs.com/hyd309/p/1323850.html