zoukankan      html  css  js  c++  java
  • Bootstrap3基础 table-striped 表格实现隔行换色(浅灰色与白色交替)

    内容
    参数
      OS   Windows 10 x64
      browser   Firefox 65.0.2
      framework     Bootstrap 3.3.7
      editor   Visual Studio Code 1.32.1  
      typesetting   Markdown

    code

    <!DOCTYPE html>
    <html lang="zh-CN">
    
    <head>
        <meta charset="UTF-8">
        <!-- IE将使用最新的引擎渲染网页 -->
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <!-- 页面的宽度与设备屏幕的宽度一致
             初始缩放比例 1:1 -->
        <meta name="viewport" content="width=device-width, initial-scale=1">
    
        <title>Demo</title>
        <meta name="author" content="www.cnblogs.com/kemingli">
    
        <!-- 引入外部bootstrap的css文件(压缩版),版本是3.3.7 -->
        <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
    
        <!-- HTML5 shim 和 Respond.js 是为了让 IE8 支持 HTML5 元素和媒体查询(media queries)功能 -->
        <!-- 警告:通过 file:// 协议(就是直接将 html 页面拖拽到浏览器中)访问页面时 Respond.js 不起作用 -->
        <!--[if lt IE 9]>
            <script src="https://cdn.jsdelivr.net/npm/html5shiv@3.7.3/dist/html5shiv.min.js"></script>
            <script src="https://cdn.jsdelivr.net/npm/respond.js@1.4.2/dest/respond.min.js"></script>
        <![endif]-->
    </head>
    
    <body>
    
        <!-- start : demo -->
        <div class="container">
            <!--
            table-bordered:给表格加外边框
            table-striped:隔行换色 bootstrap是浅灰色与白色交替
            -->
            <table class="table table-bordered table-striped">
                <tr>
                    <td>序号</td>
                    <td>名称</td>
                </tr>
                <tr>
                    <td>1</td>
                    <td>锦</td>
                </tr>
                <tr>
                    <td>2</td>
                    <td>绢</td>
                </tr>
                <tr>
                    <td>3</td>
                    <td>帛</td>
                </tr>
                <tr>
                    <td>4</td>
                    <td>布</td>
                </tr>
                <tr>
                    <td>5</td>
                    <td>绵</td>
                </tr>
                <tr>
                    <td>6</td>
                    <td>蜂蜜</td>
                </tr>
                <tr>
                    <td>7</td>
                    <td>蜜蜡</td>
                </tr>
                <tr>
                    <td>8</td>
                    <td>蜜蜂</td>
                </tr>
                <tr>
                    <td>9</td>
                    <td>土蜂</td>
                </tr>
            </table>
        </div>
        <!-- end : demo -->
    
        <!-- NO.1 加载框架依赖的jQuery文件(压缩版),版本是1.12.4 -->
        <script src="bootstrap/js/jquery.min.js"></script>
        <!-- NO.2 加载Bootstrap的所有JS插件,版本是3.3.7 -->
        <script src="bootstrap/js/bootstrap.min.js"></script>
    </body>
    
    </html>
    

    result

    resource

    • [ 文档 ] getbootstrap.com/docs/3.3
    • [ 源码 ] github.com/twbs/bootstrap
    • [ 源码 ] archive.mozilla.org/pub/firefox/releases/65.0/source/
    • [ 平台 ] www.cnblogs.com
    • [ 平台 ] github.com
    • [ 扩展 - 平台] www.bootcss.com
    • [ 扩展 - 浏览器 ] www.mozilla.org/zh-CN/firefox/developer


    Bootstrap是前端开源框架,优秀,值得学习。
    博文讲述的是V3版本,更为先进的是V4版本。学有余力的话,可作简单地了解。
    Firefox是开源的浏览器,优秀,值得关注。
    面对开源框架,分析、领悟与应用,能对其进行加减裁化,随心所欲而不逾矩。
    博文的质量普通,仅供参考。盲目复制,处处是坑。Think twice before you act(三思而后行)!

  • 相关阅读:
    使用MVC框架中要注意的问题(八):HandleError
    HttpModule中真的不能读写Session吗?
    使用MVC框架中要注意的问题(二):将Model和Controller单独用一个项目设计
    Linq TO SQL 虽好,但不要滥用
    div如何实现左右两个panel并排,而且高度一致
    Required Content Placeholders in SharePoint Masterpages
    LINQ TO SQL:直接执行查询和命令
    使用MVC框架中要注意的问题(三):如何为链接指定路径
    SharePoint Server 2007 页面模型{转载}
    使用MVC框架中要注意的问题(四):ActionLink只是执行Get的操作
  • 原文地址:https://www.cnblogs.com/kemingli/p/10545571.html
Copyright © 2011-2022 走看看