CSS 文字选中颜色

  • A+
所属分类:系统文档

通过CSS修改文字在选中后的颜色,默认为蓝色背景,白色字体颜色

示例:

::selection {

background:#d3d3d3;

color:#555;

}

::-moz-selection {

background:#d3d3d3;

color:#555;

}

::-webkit-selection {

background:#d3d3d3;

color:#555;

}

以上为对整体使用,如果需要对指定标签使用则如下:

.article-content p::selection {

    background:#000000; 

    color:#ffffff;

}

.article-content a::selection {

    background:#000000; 

    color:#ffffff;

}

  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 我的微信公众号
  • 我的微信公众号扫一扫
  • weinxin

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: