如何制作::选择背景不透明度:1?

时间:2014-03-31 00:08:45

标签: html css background selection opacity

这可能吗?我希望所选文本具有纯色背景,而不是透明背景。 opacity: 1没有这样做,因为必须有来自浏览器的标准覆盖(或类似的东西)。

::-moz-selection {
  background: #fff;
  color: #000;
}

::selection {
  background: #fff;
  color: #000;
}

body {
  color: #fff;
  font-family: sans-serif;
  line-height: 2em;
}

div {
  padding: 2em;
  background: #F8372A;
  text-align: center;
}
<div>
  <h1>HEY!</h1>
  <p>why is my background not<br/><strong>STARK WHITE</strong><br/>when selected?</p>
</div>

1 个答案:

答案 0 :(得分:12)

刚刚在background-color: rgba(255,255,255,0.99);上使用::selection进行了尝试,并且有效:

http://jsfiddle.net/Hc25u/