Recently, I saw some tricks on hiding things. What I'm curious about is what's the difference between clip: rect(0, 0, 0, 0);
and visibility: hidden;
, while both can hide things and remain the space in the same time.
Also, is there any difference between using clip: rect(0, 0, 0, 0);
and clip: rect(1px, 1px, 1px, 1px);
?