I\'ve got some element I want to fade with CSS3. It can be simply done by 2 classes with opacity: 0 and opacity: 1, b
opacity: 0
opacity: 1
try to make an element that do not accept click by applying z-index to negative value.
a{z-index: -999;}
Oh! I understood your problem. You can set visibility: collapse; better than hidden I think.
visibility: collapse;