开发者

selected text background color

开发者 https://www.devze.com 2023-01-02 08:36 出处:网络
when i use any site i see that selected text backgrou开发者_运维知识库nd color show blue or according our OS theme.can i change this selected text background color?You can use this style. this will wo

when i use any site i see that selected text backgrou开发者_运维知识库nd color show blue or according our OS theme.can i change this selected text background color?


You can use this style. this will work on all major browser except IE

<style>
             ::-moz-selection
            {
             background:#0C0;
             color:#f00;
             }
            ::selection
            {
            background:#6374AB;
            color:#F00;
           }
    </style>


In Firefox, you can apply CSS styles to ::-moz-selection.
In Safari, you can apply CSS styles to ::selection.

See here.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号