CSS 自定义光标:Firefox 和 Chrome 中的问题排查
当尝试使用 CSS 中的图像使用自定义光标时,您可能会遇到困难在 Firefox 和 Chrome 浏览器中。您提供的代码使用带有图像 URL 的属性光标:
<code class="css">body { cursor: url('http://anuary.com/dev/hp/pad3/public/images/hand-cursor.png'); }</code>
但是,此方法在上述浏览器中失败。要解决这个问题,您必须考虑两个方面:
<code class="css">cursor: url('http://anuary.com/dev/hp/pad3/public/images/hand-cursor.png'), pointer;</code>
注意:使用自定义光标时无法保持原始图像大小。有关更多详细信息,请参阅 Mozilla 开发者网络文档。
以上是为什么我的 CSS 自定义光标无法在 Firefox 和 Chrome 中工作?的详细内容。更多信息请关注PHP中文网其他相关文章!