最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Disable mouse pointer text selector when hovering above text - Stack Overflow

programmeradmin0浏览0评论

Every time you hover over text the mouse turns in to this text selector that pops up instead of the mouse icon, How do i disable this in CSS/JS/HTML when hovering over specific paragraphs containing the same class? Could this be done in CSS? for example i dont want to have a hover option over this:

<p class="class">Dont hover over me</p>

Every time you hover over text the mouse turns in to this text selector that pops up instead of the mouse icon, How do i disable this in CSS/JS/HTML when hovering over specific paragraphs containing the same class? Could this be done in CSS? for example i dont want to have a hover option over this:

<p class="class">Dont hover over me</p>
Share Improve this question asked Feb 13, 2014 at 16:21 BodokhBodokh 1,0764 gold badges18 silver badges34 bronze badges 1
  • 1 Just a guess: p:hover { cursor: default } – Johan Commented Feb 13, 2014 at 16:23
Add a ment  | 

4 Answers 4

Reset to default 8

You can use cursor property:

p.class {
    cursor: default;
}

You can do it like this:

.class:hover{
   cursor:default;
}

Yes, you can set the CSS cursor property:

p.class {
     cursor: default;
}

to disable the text style.

Use

cursor: default;

In your CSS. Look up the documentation here: http://www.w3schools./cssref/pr_class_cursor.asp

发布评论

评论列表(0)

  1. 暂无评论