PostCSS Logical Properties and Values
Last updated
Was this helpful?
Last updated
Was this helpful?
PostCSS Logical Properties and Values lets you use logical, rather than physical, direction and dimension mappings in CSS, following the CSS Logical Properties and Values specification.
These shorthand properties set values for physical properties by default. Specifying the logical
keyboard at the beginning of the property value will transform the flow-relative values afterward into both physical LTR and RTL properties:
border
, border-block
, border-block-start
, border-block-end
, border-inline
, border-inline-start
, border-inline-end
, border-start
, border-end
, border-color
, border-block-color
, border-block-start-color
, border-block-end-color
, border-inline-color
, border-inline-start-color
, border-inline-end-color
, border-start-color
, border-end-color
, border-style
, border-block-style
, border-block-start-style
, border-block-end-style
, border-inline-style
, border-inline-start-style
, border-inline-end-style
, border-start-style
, border-end-style
, border-width
, border-block-width
, border-block-start-width
, border-block-end-width
, border-inline-width
, border-inline-start-width
, border-inline-end-width
, border-start-width
, border-end-width
inset
, inset-block
, inset-block-start
, inset-block-end
, inset-inline
, inset-inline-start
, inset-inline-end
, inset-start
, inset-end
margin
, margin-block
, margin-block-start
, margin-block-end
, margin-inline
, margin-inline-start
, margin-inline-end
, margin-start
, margin-end
padding
, padding-block
, padding-block-start
, padding-block-end
, padding-inline
, padding-inline-start
, padding-inline-end
, padding-start
, padding-end
block-size
, inline-size
clear: inline-start
, clear: inline-end
, float: inline-start
, float: inline-end
, text-align: start
, text-align: end
By default, PostCSS Logical Properties and Values creates fallback selectors which require at least one [dir]
attribute in your HTML. If you don’t have any [dir]
attributes, consider using the following JavaScript:
Otherwise, consider using the dir
option to transform all logical properties and values to a specific direction.
Add PostCSS Logical Properties and Values to your project:
Use PostCSS Logical Properties and Values to process your CSS:
Or use it as a PostCSS plugin:
PostCSS Logical Properties and Values runs in all Node environments, with special instructions for:
The dir
option determines how directional fallbacks should be added to CSS. By default, fallbacks replace the logical declaration with nested :dir
pseudo-classes. If dir
is defined as ltr
or rtl
then only the left or right directional fallbacks will replace the logical declarations. If preserve
is defined as true
, then the dir
option will be ignored.
The preserve
option determines whether directional fallbacks should be added before logical declarations without replacing them. By default, directional fallbacks replace logical declaration. If preserve
is defined as true
, then the dir
option will be ignored.