Home >Web Front-end >CSS Tutorial >How to disable hyperlinks in css
You can use the pointer-events attribute in css to make the hyperlink unavailable; you only need to set the "pointer-events:none;" style to the label element where the hyperlink is located, so that the hyperlink element will never be available. Will become the target of mouse events, thus making the hyperlink unavailable.
#The operating environment of this tutorial: Windows 7 system, css3 version, Dell G3 computer.
Tutorial recommendation: css video tutorial
You can use the pointer-events:none;
style in css to make hyperlinks unavailable.
Pointer-events attribute: Specifies under what circumstances an element can become the target of mouse events.
The pointer-events attribute uses the none effect:
The element will never be the target of mouse events. However, mouse events can be directed to descendant elements when their pointer-events attribute specifies a different value, in which case the mouse event will trigger the parent element's event listener during the capture or bubbling phase.
Example:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style type="text/css"> a { pointer-events: none; cursor: default; } </style> </head> <body> <a href="https://www.php.cn/">php中文网</a> </body> </html>
Effect:
Programming Teaching! !
The above is the detailed content of How to disable hyperlinks in css. For more information, please follow other related articles on the PHP Chinese website!