CSS 改變文字選中顏色

看風景就發表於2015-08-23

改變文字顏色                                         

::selection {
    background: #f88;
    text-shadow: none;
    color: #000;
}
::-moz-selection {
   background: #f88;
   text-shadow: none;
   color: #000;
}
::-webkit-selection {
    background: #f88;
    text-shadow: none;
    color: #000;
}

改變超連結顏色

a::selection {
   background: #f88;
   text-shadow: none;
   color: #fff;
   outline: 0;
}
a::-moz-selection {
   background: #f88;
   text-shadow: none;
   color: #fff;
   outline: 0;
}
a::-webkit-selection {
   background: #f88;
   text-shadow: none;
   color: #fff;
   outline: 0;
}

 

相關文章