This property determines the kind of box(block or inline) used to display the selected element. It is mostly used to override the default way the browser displays certain elements. This property actually accepts 17 different values, most of which have no effect on browsers today.
display: none;
IE5.5+, FF1+, SA1.3+, OP9.2+
| block | Forces a line break before and after the selected element. |
| inline | Displays the selected element on the same line as surrounding elements. |
| none | Does not apply the properties style. |