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
4 Answers
Reset to default 8You 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