Files
freeCodeCamp/guide/english/css/pointer-events/index.md
Daniel B. Papp c4a0480ccd Added examples and definition - CSS (#20066)
* Added examples and definition - CSS

- added two examples with the most used values
- added definition

* Added resources to Graceful Degradation - CSS

Added links to multiple articles / post / explanations / tools to help coders understand the concept

* changed triple backtick to single

* fixed https link

- had to fix one link to point to the https site
- removed one link because it doesn't match with the guide provided by FCC

* Add a space between class name and curly brace
2018-11-01 12:51:41 +07:00

922 B

title
title
Pointer Events

Pointer Events

This property specifies how your mouse reacts when you hover over any element on a page.

Example


.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

More Information: