The .show class forces an element to be shown (display:block):
This paragraph is forced to be shown (display:block).
The .hidden class forces an element to be hidden (display:none):
This paragraph is forced to be hidden (display:none).
The .invisible class makes an element invisible (visibility:hidden) - will take up space on page:
This paragraph is forced to be hidden (visibility:hidden).
Sample text to show elements with class="invisible" takes up space.