zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    D django 用户认证系统
    vim 跳到指定行
    django 的auth.authenticate返回为None
    git fetch 的简单用法:更新远程代码到本地仓库
    sql语句查询出表里符合条件的第二条记录的方法
    你一定喜欢看的 Webpack 2.× 入门实战
    webpack 从入门到工程实践
    入门Webpack,看这篇就够了
    教程
    常用浏览器如何设置代理服务器上网(图文教程)
  • 原文地址:https://www.cnblogs.com/hyd309/p/1323850.html
Copyright © 2011-2022 走看看