CSS 禁止选择(取消被选中背景)

两个方案

1 使用 user-select  禁止用户选择

 -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */


    /* No support for these yet, use at own risk */
    -o-user-select: none;
    user-select: none;



2.使用::selection

{

background-color:white

}

使得页面看起来似乎是没有被选中



3. 使用 select option 控件 默认就是  user-select:none


你可能感兴趣的:(CSS 禁止选择(取消被选中背景))