css ::selection 的妙用

1、选中页面文字和元素时的背景颜色

::selection {
    background: #25b864;
    color: #fff;
}

 

 2、不能选择页面内容(但可以拖拽内容进行复制。挺好玩的)

::selection {
        background: inherit;
        color: inherit;
}

 

posted @ 2018-09-03 18:07  贝尔塔猫  阅读(230)  评论(0编辑  收藏  举报