CSS Classification Properties
The CSS classification properties allow you to control how to display an element, set where an image will appear in another
element, position an element relative to its normal position, position an element
using an absolute value, and how to control the visibility of an element.
Browser support: IE: Internet Explorer, F: Firefox, N: Netscape.
W3C: The number in the "W3C" column indicates in which CSS recommendation
the property is defined (CSS1 or CSS2).
| Property | Description | Values | IE | F | N | W3C |
|---|---|---|---|---|---|---|
| clear | Sets the sides of an element where other floating elements are not allowed | left
right |
4 | 1 | 4 | 1 |
| cursor | Specifies the type of cursor to be displayed | url auto crosshair nw-resize text |
4 | 1 | 6 | 2 |
| display | Sets how/if an element is displayed | none inline block inline-table table-column |
4 | 1 | 4 | 1 |
| float | Sets where an image or a text will appear in another element | left right none |
4 | 1 | 4 | 1 |
| position | Places an element in a static, relative, absolute or fixed position | static relative absolute fixed |
4 | 1 | 4 | 2 |
| visibility | Sets if an element should be visible or invisible | visible hidden collapse |
4 | 1 | 6 | 2 |