Extra
Introduction
The extra section contains CSS transitions, filters, transforms, and some other properties.
Extra Section Properties
Property | Values | Description |
---|---|---|
Transition | – | CSS transitions allows you to change property values smoothly, over a given duration. Learn more. |
Filters | – | CSS Filters allows you to defines visual effects (like blur and saturation) to an element. |
Transforms | – | CSS Transforms applies a 2D or 3D transformation to an element. This property allows you to rotate, scale, move, skew, etc., elements. |
Opacity | number | Sets the opacity level for an element. |
Display | block, flex, inline, inline-block, inline-flex, table-cell, none | Specifies the type of box used for an element. |
Cursor | auto, alias, all-scroll, copy, crosshair, grab, grabbing, help, not-allowed, pointer, progress, text, wait, zoom-in, zoom-out | Specifies the type of cursor to be displayed when pointing on an element. |
Float | none, left, right | Specifies how an element should float. |
Clear | none, left, right, both | Specifies on which sides of an element floating elements are not allowed to float. |
Visibility | visible, hidden, initial | Specifies whether or not an element is visible. |
Pointer Events | auto, none | Specifies under what circumstances (if any) a particular graphic element can become the target of mouse events. |
Overflow X | visible, hidden, scroll, auto | Specifies what to do with the left/right edges of the content – if it overflows the elements content area. |
Overflow Y | visible, hidden, scroll, auto | specifies what to do with the bottom edges of the content – if it overflows the elements content area. |
Was this article helpful?
YesNo