开发者

selected text background color

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜