CSS3:高亮文本选中颜色

关键字:  ::selection

为了个性化网站主题,可以对文本高亮背景颜色进行设置。

:selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}


一个简单的例子:



	
	
	
	
	
	
		

This paragragh doesn't use ::selection

This paragragh uses ::selection,highlight color is yellow.

This paragragh uses ::selection,highlight color is blue.



未选中时:



选中时:



第一个段落选中的高亮颜色是浏览器的默认颜色。该CSS3属性在主流浏览器(FF,Chrome)等运行正常。


可在jsfiddle在线编辑里尝试一下:

http://jsfiddle.net/xm7h3oxs/


参考博客:http://css-tricks.com/overriding-the-default-text-selection-color-with-css/

你可能感兴趣的:(CSS,html)