javascript - 在响应表中,第二列值与第一列值重叠

标签 javascript jquery html css responsive-design

当你缩小浏览器窗口时,你会看到不同的表格布局,因为我使用的是响应式表格.... 问题是在 iphone 屏幕布局中,一些第二列值与第一列值的相应行重叠.... 如何避免重叠...

http://jsfiddle.net/bz2C4/embedded/result/

/* 
    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
        */
        td:nth-of-type(1):before { content: "MFG P/N"; }
        td:nth-of-type(2):before { content: "MFG Name"; }
        td:nth-of-type(3):before { content: "Part ID"; }
        td:nth-of-type(4):before { content: "Description"; }
        td:nth-of-type(5):before { content: "Cost"; }
        td:nth-of-type(6):before { content: "Price"; }
        td:nth-of-type(7):before { content: "On Hand"; }
        td:nth-of-type(8):before { content: "On Order"; }
        td:nth-of-type(9):before { content: "Allocated"; }
        td:nth-of-type(10):before { content: "Shipped"; }
        td:nth-of-type(11):before { content: "Report"; }
        td:nth-of-type(12):before { content: "RMA"; }
        td:nth-of-type(10):before { content: "File"; }
        td:nth-of-type(10):before { content: "Add Part"; }
    }

    /* 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; 
        }
    }

最佳答案

您需要删除“position:absolute;”从生成的内容 - 请参阅 http://jsfiddle.net/ffYTa/

td:before{position:static;}

关于javascript - 在响应表中,第二列值与第一列值重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15774460/

相关文章:

html - 在 React 中设置 CSS 伪类的样式

javascript - 如何在 AngularJS 中的不同 Controller 之间进行交互

javascript - 建立网站时出现搜索引擎问题(TypeError : Cannot read property 'toLowerCase' of undefined)

javascript - 在 jquery 中创建一个关联数组

javascript - 将匿名函数更改为命名函数时如何添加额外参数

javascript - jQuery 单击功能仅激活第一个元素

javascript - 通过javascript更改div中属性的事件监听器

jquery - minDate 和 maxDate 选项在日期选择器中不起作用

jquery - 如何映射取决于内容的高度?

html - 是否可以在警报中使用 Bootstrap (v3) 网格系统?