freeCodeCamp/guide/english/css/pointer-events/index.md

34 lines
922 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Pointer Events
---
## Pointer Events
This property specifies how your mouse reacts when you hover over any element on a page.
2018-10-12 19:37:13 +00:00
### Example
```css
.example {
pointer-events: auto;
/*this will use the default look set by the browser agent*/
}
.example {
pointer-events: none;
/*this will use the regular mouse look when hovered over the element*/
}
```
### Other acceptable values
Other values could be: `initial`, and `inherit`
2018-10-12 19:37:13 +00:00
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
#### More Information:
- [pointer-events on MDN web docs](https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events)
- [Scalable Vector Graphics 1.1 specification (recommendation)](https://www.w3.org/TR/SVG11/interact.html#PointerEventsProperty)
- [Can I use: CSS pointer-events property](https://caniuse.com/#feat=pointer-events)