某种不需要的 div 突出显示日期选择器实现-css

Some sort of unwanted div highlight datepicker materialize-css

我正在制作一个 cordova 应用程序,但今天我偶然发现了一个奇怪的问题。每当我关闭日期选择器时(http://materializecss.com/forms.html#date-picker) there is a yellow line at the edge of the webview. (I scrolled a bit down to make it more clear in the picture) screenshot

我最初认为这是因为触摸设备上的某些突出显示功能,因为当我在浏览器上测试我的应用程序时 (chrome),边框不存在。

在 css 中,我禁用了这样的高亮显示(尽管它不起作用):

*{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

在 css 中添加 outline:none; 完成了工作。