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>
  • 相关阅读:
    python中selenium+unittest实操
    python+selenium元素定位04——浏览器多窗口处理
    python+selenium元素定位03——自动化常见场景处理
    python+selenium元素定位02——层级定位
    requests.post() 方法的使用
    python+selenium元素定位01——显式、隐式等待
    python+selenium之元素识别二
    IO流常用基类
    STS中导入Jmeter源码遇到的坑
    MySql处理日期时间常用函数
  • 原文地址:https://www.cnblogs.com/hyd309/p/1323850.html
Copyright © 2011-2022 走看看