Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> div.example { pointer-events: none; } div.example2 { pointer-events: auto; } </style> </head> <body> <h2>Пример свойства pointer-events</h2> <h3>Pointer-events: none</h3> <div class="example">Нажмите сюда: <a href="https://www.w3docs.com/learn-javascript.html">JavaScript Tutorial</a></div> <h3>Pointer-events: auto</h3> <div class="example2">Нажмите сюда: <a href="https://www.w3docs.com/learn-css.html">CSS Tutorial</a></div> </body> </html>