更改::选择颜色以便在Apple移动设备上突出显示?

时间:2017-12-12 11:49:48

标签: html ios css mobile selection

因此,如果我想更改Chrome,Safari和Firefox上用于计算机和Android平板电脑的选择,请使用以下代码:

::selection {
  background: #33C3F0;
}

::-webkit-selection {
  background: #33C3F0;
}

::-moz-selection {
  background: #33C3F0;
}

但如果我在iPhone和iPad上看它,突出显示的颜色不会改变。由于它在Safari和Chrome中都没有变化,我猜它在ios移动设备上不可能是全系统的。我尝试了-webkit-tap-highlight-color,但只是改变了活动点击项目的背景颜色,如链接。

示例:

iPad selection is default apple selection blue instead of the blue un the second example

On android Chrome however it is the right blue

现在,有什么方法可以让我的网站上的文字选择高亮颜色成为移动ios设备上默认的另一种颜色?

0 个答案:

没有答案