Firefox:删除表格单元格周围的行

时间:2016-04-18 08:43:44

标签: html css firefox

我有一个简单的表,允许用户使用ctrl键进行一些交互。

一切正常但在FF上,当用户持有ctrl并单击一个单元格(<td>)时,会添加一条蓝线:

enter image description here

我尝试使用outline: 0;删除它,但没有成功。

SCSS:

table {
        border-top: 1px solid #cfcfcf;
        th {
            min-width: 150px;
            cursor: pointer;
        }
        th,
        td {   
            border: 1px solid #cfcfcf;
            vertical-align: middle;
            outline: 0;
        }
    }

1 个答案:

答案 0 :(得分:2)

请试试这个:

project.json

如果上述情况不起作用,请尝试以下方法:

$('table')。on('mousedown',function(e){  if(e.ctrlKey){e.preventDefault(); }});