zoukankan      html  css  js  c++  java
  • 什么是响应式表格(响应式表格和普通表格的区别)

    什么是响应式表格(响应式表格和普通表格的区别)

    一、响应式表格一句话简介

    响应式表格就是表格随着屏幕的变化而自动变化格式方便阅读的表格

    二、响应式表格简介

    随着各种手持设备的出现要想让你的Web页面适合千罗万像的设备浏览响应式设计的呼声越来越高。在Bootstrap中也为表格提供了响应式的效果,将其称为响应式表格。
    Bootstrap提供了一个容器,并且此容器设置类名“.table-responsive”,此容器就具有响应式效果,然后将<table class="table">置于这个容器当中,这样表格也就具有响应式效果。
    Bootstrap中响应式表格效果表现为:当你的浏览器可视区域小于768px时,表格底部会出现水平滚动条。当你的浏览器可视区域大于768px时,表格底部水平滚动条就会消失。示例如下:

    <div class="table-responsive">
    <table class="table table-bordered">
       …
    </table>
    </div>

    运行效果如下:

    (宽屏效果)

    (窄屏效果)

    三、Bootstrap响应式表格

    将任何 .table 元素包裹在 .table-responsive 元素内,即可创建响应式表格,其会在小屏幕设备上(小于768px)水平滚动。当屏幕大于 768px 宽度时,水平滚动条消失。

    垂直方向的内容截断

    响应式表格使用了 overflow-y: hidden 属性,这样就能将超出表格底部和顶部的内容截断。特别是,也可以截断下拉菜单和其他第三方组件。

    Firefox 和 fieldset 元素

    Firefox 浏览器对 fieldset 元素设置了一些影响 width 属性的样式,导致响应式表格出现问题。可以使用下面提供的针对 Firefox 的 hack 代码解决,但是以下代码并未集成在 Bootstrap 中:

    Copy
    @-moz-document url-prefix() {
      fieldset { display: table-cell; }
    }

    更多信息请参考 this Stack Overflow answer.

    #Table headingTable headingTable headingTable headingTable headingTable heading
    1 Table cell Table cell Table cell Table cell Table cell Table cell
    2 Table cell Table cell Table cell Table cell Table cell Table cell
    3 Table cell Table cell Table cell Table cell Table cell Table cell
    #Table headingTable headingTable headingTable headingTable headingTable heading
    1 Table cell Table cell Table cell Table cell Table cell Table cell
    2 Table cell Table cell Table cell Table cell Table cell Table cell
    3 Table cell Table cell Table cell Table cell Table cell Table cell
     
    <div class="table-responsive">
      <table class="table">
        ...
      </table>
    </div>
  • 相关阅读:
    JAVA设计模式---总述篇
    Java中对象创建时的内存分配
    for循环打印空心菱形的新方法
    springcloud2.X通过actuator加载配置无效问题
    golang-错误处理
    golang-字符串
    golang-方法和接口
    golang-结构体与指针
    golang-数组、切片、映射
    golang-流程控制
  • 原文地址:https://www.cnblogs.com/Renyi-Fan/p/8625122.html
Copyright © 2011-2022 走看看