Eye of Design helps users find information on web design and development along with feature a gallary of works created by Gary R. Hess.
Display
The display property is used for a variety of reasons. One is to display it as a block-level element (starting a new paragraph). Another is to display the element as inline (to not start a new paragraph). Three, to display the item as a list-item. And last but not least, to not display it at all (none).
The four properties are as follows:
- display: block;
- display: inline;
- display: list-item;
- display: none;
Remember
When using the display: none; property it does not necessarilly mean search engines will take into account the information within the element. So use it sparingly.
