html - 扩展表格行 div 时 Chrome 中的奇怪边框行为

标签 html google-chrome border expand

我在 td 中有一个包含展开/折叠 div 元素的表格。 在 IE9 中展开时,一切正常,但在 Google Chrome(版本 16.0.912.75 m)中,我在不同的地方出现了意想不到的实线边框。 似乎 colspan=3 tr 与此有​​关,因为实线边框出现在它们的上方和下方。此外,div 宽度值似乎会影响这一点:为这些值选择其他值时,行为会发生变化。

请参阅下面的 html。我添加了 4 个屏幕打印:初始 View 、展开第 1 行、展开第 2 行、展开两者。 是什么导致了这种奇怪的行为,我该如何预防?

initial row1 expanded row2 expanded both expanded

<html>
<head>
    <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
    <title>Example</title>
    <style type="text/css">
        table {
            border: solid black 1pt;
            border-collapse: collapse;
            padding: 0;
            border-spacing: 0;
        }

        th {
            background: rgb(255, 255, 153);
            border-style: solid;
            border-color: black;
            border-width: 1pt;
            padding: 0cm 5pt;
            color: black;
            font-family: Verdana;
                font-size: 10pt;
            font-style: normal;
            vertical-align: top;
        }
        td {
            border-style: dotted dotted none none;
            border-color: black;
            border-width: 1pt;
            padding: 0cm 5pt;
            color: black;
            font-style: normal;
            font-family: Verdana;
                font-size: 10pt;
            vertical-align: top;
            margin-bottom: 4.5pt;
            margin-top: 0pt;
        }

        div.QUAL {
            margin-left:4pt;
            font-size: 90%;
        }

        input.buttonQUAL {
            color: blue;
            background: white;
            border: none;
            margin-left:0pt;
            margin-top: 0px;
            margin-bottom: 0px;
            font-size: 100%;
        }

        div.listQUALdesc {
            color: black;
            background: white;
            font-size: 100%;
        }
    </style>
    <script type="text/javascript" language="javascript">
        //expand and collapse functions based on id
        function toggleMe(a){
            var e = document.getElementById(a);
            if(!e) return true;
            if( e.style.display == "none")
                {
                e.style.display = "block"
                }
            else    {
                e.style.display = "none"
                }
            return true;
        };

        function expandByIdStart(IdStart){
            var divs = document.getElementsByTagName('div');
            for (var i=0; i<divs.length; i++) {
                if (divs[i].id.match("^"+IdStart) == IdStart) { 
                    divs[i].style.display = "block";
                }
            }
            return true;
        }

        function collapseByIdStart(IdStart){
            var divs = document.getElementsByTagName('div');
            for (var i=0; i<divs.length; i++) {
                if (divs[i].id.match("^"+IdStart) == IdStart) { 
                    divs[i].style.display = "none";
                }
            }
            return true;
        }
    </script>
</head>
<body>
    <p/>
    <table style='table-layout:fixed word-break:break-all'>
        <col width="70"><col width="70"><col width="70">
        <thead><tr><th>Col1</th><th>Col2</th><th>Col3</th></tr></thead>
        <tbody>
            <tr>
                <td>
                    <input
                        type="button"
                        class="buttonQUAL"
                        onclick="toggleMe('row1'); return true;"
                        onMouseOver="this.style.cursor='hand'"
                        value="row1"/>
                </td>
                <td>text1
                    <div id="row1" class="listQUALdesc" style="width:100; display:none">
                        text2
                    </div>
                </td>
                <td></td>
            </tr>
            <tr>
                <td><div class="QUAL">xxx</div></td>
                <td>text3</td>
                <td></td>
            </tr>
            <tr>
                <td colspan="3">Start</td>
            </tr>
            <tr>
                <td>
                    <input
                        type="button"
                        class="buttonQUAL"
                        onclick="toggleMe('row2'); return true;"
                        onMouseOver="this.style.cursor='hand'"
                        value="row2"/>
                    <div id="row2" class="QUAL" style="display:none;width:65">
                        text5<br/>
                    </div>
                </td>
                <td>text4</td>
                <td></td>
            </tr>
            <tr>
                <td colspan="3">End</td>
            </tr>
        </tbody>
    </table>
</body>
</html>

最佳答案

查看评论 - 添加 <!doctype html> 部分解决了问题

添加

网络上有一些问题指向 Chrome 和 Safari(使用 webkit)的错误,如下所示:webkit-colspan-table-border-bug .

似乎将 colspan 和 bottom-border 与 border-collapse: collapse 结合使用会导致边框显示问题,就像我的示例一样。

关于html - 扩展表格行 div 时 Chrome 中的奇怪边框行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8873881/

相关文章:

javascript - 将对象从 Html 传递到指令

javascript - contenteditable=false 在 contenteditable=true

css - 边框上的背景图像

javascript - 如何去除jqgrid中的水平线

javascript - jQuery如何在数组中查找字符串的一部分

javascript - 如何在用户通过后退按钮返回页面时隐藏加载叠加层

Javascript - 获取悬停元素的背景颜色

javascript - 当您将 Selenium 与 chromedriver 一起使用时,网站可以检测到吗?

flutter - 在 Flutter 应用程序中实现带有标签文本的大纲文本字段输入

html - angular-cli:依赖于环境的 CSS