兼容模式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
::-moz-selection{
color:red;
background: green;
}
::-webkit-selection{
color:red;
background: green;
}
::-ms-selection{
color:red;
background: green;
}
::selection{
color:white;
background-color: #000;
}
</style>
</head>
<body>
<!--
-ms IE
-moz Firefox
-webkit chrome safari
html5.js
-->
<p>人生最喜欢的人和事就是:睡你! 睡觉 和 你</p>
</body>
</html>