CSS0012: IOS平台下点击按钮出现一个半透明的灰色背景

1,

* {
    /* IOS平台下点击按钮,会出现一个半透明的灰色背景,alpha值为0即为禁用 */
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* margin: 0; */
    /* padding: 0; */
}

 

posted @ 2020-08-05 16:37  琥珀君  阅读(229)  评论(0编辑  收藏  举报