CSS: How to remove a link?

Sometimes it can be a bit cumbersome when searching for a link to remove. If nothing works, you can help yourself with the following CSS snippet. This does not delete the link, but makes sure that it can no longer be clicked.

.demo { 
    pointer-events: none; 
}