Let\'s say if I have wrapper div which includes some links and images, is there any way I can deactivate it at once with CSS only?
After review of answers:
You should consider to apply the event.preventDefault function of jQuery. Here you can find an example:
http://api.jquery.com/event.preventDefault/
TL;DR-version:
$("#element-to-block").click( function(event) { event.preventDefault(); }
BAM!