Last active
February 18, 2026 07:00
-
-
Save kupereal/53822875bde069134b4c6ac2572fa3d1 to your computer and use it in GitHub Desktop.
Мой порядок сортировки CSS-свойств
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| "position", | |
| "z-index", | |
| "top", | |
| "right", | |
| "bottom", | |
| "left", | |
| "display", | |
| "visibility", | |
| "float", | |
| "clear", | |
| "overflow", | |
| "overflow-x", | |
| "overflow-y", | |
| "align-content", | |
| "align-items", | |
| "align-self", | |
| "flex", | |
| "flex-flow", | |
| "flex-basis", | |
| "flex-direction", | |
| "flex-grow", | |
| "flex-shrink", | |
| "flex-wrap", | |
| "justify-content", | |
| "order", | |
| "box-sizing", | |
| "width", | |
| "min-width", | |
| "max-width", | |
| "height", | |
| "min-height", | |
| "max-height", | |
| "margin", | |
| "margin-top", | |
| "margin-right", | |
| "margin-bottom", | |
| "margin-left", | |
| "padding", | |
| "padding-top", | |
| "padding-right", | |
| "padding-bottom", | |
| "padding-left", | |
| "table-layout", | |
| "empty-cells", | |
| "caption-side", | |
| "border-spacing", | |
| "border-collapse", | |
| "list-style", | |
| "list-style-position", | |
| "list-style-type", | |
| "list-style-image", | |
| "content", | |
| "quotes", | |
| "counter-reset", | |
| "counter-increment", | |
| "resize", | |
| "cursor", | |
| "user-select", | |
| "transition", | |
| "transition-delay", | |
| "transition-timing-function", | |
| "transition-duration", | |
| "transition-property", | |
| "transform", | |
| "transform-origin", | |
| "animation", | |
| "animation-name", | |
| "animation-duration", | |
| "animation-play-state", | |
| "animation-timing-function", | |
| "animation-delay", | |
| "animation-iteration-count", | |
| "animation-direction", | |
| "text-align", | |
| "text-align-last", | |
| "vertical-align", | |
| "white-space", | |
| "text-decoration", | |
| "text-emphasis", | |
| "text-indent", | |
| "text-justify", | |
| "text-transform", | |
| "letter-spacing", | |
| "word-spacing", | |
| "writing-mode", | |
| "text-wrap", | |
| "text-overflow", | |
| "word-wrap", | |
| "word-break", | |
| "tab-size", | |
| "hyphens", | |
| "pointer-events", | |
| "opacity", | |
| "color", | |
| "border", | |
| "border-width", | |
| "border-style", | |
| "border-color", | |
| "border-top", | |
| "border-top-width", | |
| "border-top-style", | |
| "border-top-color", | |
| "border-right", | |
| "border-right-width", | |
| "border-right-style", | |
| "border-right-color", | |
| "border-bottom", | |
| "border-bottom-width", | |
| "border-bottom-style", | |
| "border-bottom-color", | |
| "border-left", | |
| "border-left-width", | |
| "border-left-style", | |
| "border-left-color", | |
| "border-radius", | |
| "border-top-left-radius", | |
| "border-top-right-radius", | |
| "border-bottom-right-radius", | |
| "border-bottom-left-radius", | |
| "border-image", | |
| "border-image-source", | |
| "border-image-slice", | |
| "border-image-width", | |
| "border-image-outset", | |
| "border-image-repeat", | |
| "outline", | |
| "outline-width", | |
| "outline-style", | |
| "outline-color", | |
| "outline-offset", | |
| "background", | |
| "background-color", | |
| "background-image", | |
| "background-repeat", | |
| "background-attachment", | |
| "background-position", | |
| "background-clip", | |
| "background-origin", | |
| "background-size", | |
| "box-decoration-break", | |
| "box-shadow", | |
| "text-shadow", | |
| "font", | |
| "font-family", | |
| "font-size", | |
| "font-weight", | |
| "font-style", | |
| "font-variant", | |
| "line-height" | |
| ], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment