html - 使用媒体查询调整响应表

标签 html css asp.net razor media-queries

我正在尝试调整现有的响应表,该表是在 ASP.NET Web 应用程序中使用 css/媒体查询创建的。我在 this website 找到了我的表格所基于的模型.这个表的demo可以看here .

如您所见,随着窗口缩小,表格最终将每一行分解为自己的图表。我想做同样的事情,除了每一列都是自己的图表(即)第一个图表是所有姓氏的图表,等等。有人有什么想法吗?

下面是在窗口大小改变后改变图表格式的媒体查询。

<style>

/*
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr { border: 1px solid #ccc; }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    /*
    Label the data
    */
    /*th:nth-of-type(1):before { content: "First Name"; }*/
    td:nth-of-type(1):before { content: "Monday"; }
    td:nth-of-type(2):before { content: "Tuesday"; }
    td:nth-of-type(3):before { content: "Wednesday"; }
    td:nth-of-type(4):before { content: "Thursday"; }
    td:nth-of-type(5):before { content: "Friday"; }
    td:nth-of-type(6):before { content: "Saturday"; }
    td:nth-of-type(7):before { content: "Sunday"; }
}

/* Smartphones (portrait and landscape) ----------- */
@@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
    body {
        padding: 0;
        margin: 0;
        width: 320px; }
    }

/* iPads (portrait and landscape) ----------- */
@@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    body {
        width: 495px;
    }
}

</style>

谢谢!

最佳答案

看起来您需要使用第 nth-child 选择器来隐藏您不想在移动设备上显示的表格行。

所有示例所做的只是将表格行和单元格转换为显示: block ,然后添加一些额外的样式以重新排列内容。

关于html - 使用媒体查询调整响应表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37975533/

相关文章:

javascript - EmberJS 应用程序中的 Handlebars 不显示任何内容

html - 如何在没有内容的情况下将div宽度设置为完整?

jquery - 将 jQuery UI 颜色选择器 slider 转换为 jQuery Mobile 版本

c# - EPiServer.Configuration.Settings.Instance - 应用程序使用 siteId ="x"的设置进行初始化,但当前请求映射到 siteId ="y"

asp.net - 如何将 ASP.Net Identity User Email 属性引用为外键

asp.net - 如何识别 ASP.NET 中的引用页面?

javascript - 用jQuery展开onClick的输入框

html - 同样地向内联 block 添加边框

javascript - 从选定的评级标签中读取值

CSS 列数列表问题