CSS Rotation-Point Property
CSS 1 |
CSS 2 |
CSS 3 |
|
|
|
|
Description
The value of ‘rotation-point’ is a pair of values that defines a point as an offset from the top left border edge. Percentages refer to the width and height of the border box.
Syntax
rotation-point: [value];
Possible values
- [bg-position]
Initial Value
50% 50%
Applies To
Block-level elements
Inherited
No
Media
Visual
Example
.class {
rotation-point: 25% 75% ;
}
Loading Twitter