Category: CSS
-
Hiding stuff
There are three ways to hide an element in CSS: Using display:hidden removes an element from the layout completely. It doesn’t take space on the page. Pros: It removes an element from the layout completely. It doesn’t take space on the page. Cons: If used, then you must “remember” what the actual display type is…