What are the reasons for this?
When reviewing some of the code that was written by previous developers, I often encounter with:
#fac {
position: absolute;
left: -30000px;
visibility: hidden;
opacity: 0;
}
Why do they do that? What's wrong with just display: none;
?