<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>CSS如何设置选中文本的颜色</title>
<style type="text/css">
::selection{
background-color:#84ca7f;
color:#000;
}
::-webkit-selection{
background-color:#84ca7f;
color:#000;
}
::-moz-selection{
background-color:#84ca7f;
color:#000;
}
</style>
</head>
<body>
<div>选中该段文字,文本颜色变化</div>
</body>
</html>