zoukankan      html  css  js  c++  java
  • Repeater用ul li,一行显示多条数据

    原文发布时间为:2009-08-26 —— 来源于本人的百度文章 [由搬家工具导入]

    .rep {
             680px;
             float:left;
             list-style-type:none;
             overflow:hidden;
             padding:0;
              margin-left:0;
            }

            .rep li
            {
             165px;
             margin-left:2px;
             float:left;
             overflow:hidden;
             text-align:center;
            }
            .reptext
            {
                clear:both;
                165px;
                height:25px;
                line-height:25px;
                overflow:hidden;
            }

    <ul class="rep">

    <asp:Repeater ID="repTest" runat="server">

    <ItemTemplate>

    <li>

    <div class="reptext"><%#Eval("ID")%></div>

    <div class="reptext"><%#Eval("Name")%></div>

    </li>
    </ItemTemplate>
    </asp:Repeater>

    </ul>

  • 相关阅读:
    1265 四点共面
    1298 圆与三角形
    1264 线段相交
    1185 威佐夫游戏 V2
    1183 编辑距离
    1089 最长回文子串
    HTML5 boilerplate 笔记(转)
    Grunt上手指南(转)
    RequireJS 2.0初探
    RequireJS学习笔记
  • 原文地址:https://www.cnblogs.com/handboy/p/7158302.html
Copyright © 2011-2022 走看看