The <integer> CSS type represents an integer number.
An <integer> is any valid integer number like -10 or 42.
!!! note
Some CSS rules may expect an `<integer>` within certain bounds. If that is the case, it will be noted in that rule.
.classname {
offset: 10 -20
}In Python, a rule that expects a CSS type <integer> will expect a value of the type int:
widget.styles.offset = (10, -20)