| Text | color | color: #212529; | Sets text color. |
| Text | text-align | text-align: center; | Aligns text horizontally. |
| Text | text-decoration | text-decoration: underline; | Adds underline, overline, or line-through. |
| Text | text-transform | text-transform: uppercase; | Changes text capitalization. |
| Text | letter-spacing | letter-spacing: 0.05em; | Controls space between letters. |
| Text | word-spacing | word-spacing: 0.25rem; | Controls space between words. |
| Text | line-height | line-height: 1.6; | Controls line spacing. |
| Text | white-space | white-space: nowrap; | Controls text wrapping. |
| Text | text-indent | text-indent: 2rem; | Indents first line of text. |
| Text | text-overflow | text-overflow: ellipsis; | Shows ellipsis for overflowing text. |
| Text | vertical-align | vertical-align: middle; | Aligns inline or table-cell content vertically. |
| Text | direction | direction: rtl; | Sets text direction (left-to-right or right-to-left). |
| Text | text-underline-offset | text-underline-offset: 0.25em; | Controls underline spacing from text. |
| Text | word-break | word-break: break-word; | Controls word wrapping at arbitrary breaks. |
| Text | hyphens | hyphens: auto; | Controls hyphenation behavior. |
| Fonts | font-family | font-family: system-ui, sans-serif; | Sets font family. |
| Fonts | font-size | font-size: 1rem; | Sets text size. |
| Fonts | font-weight | font-weight: 700; | Controls text thickness. |
| Fonts | font-style | font-style: italic; | Sets normal or italic style. |
| Fonts | font | font: 1rem/1.5 system-ui; | Font shorthand property. |
| Box Model | width | width: 100%; | Sets element width. |
| Box Model | height | height: 300px; | Sets element height. |
| Box Model | min-width | min-width: 240px; | Sets minimum width. |
| Box Model | max-width | max-width: 1200px; | Sets maximum width. |
| Box Model | min-height | min-height: 100vh; | Sets minimum height. |
| Box Model | max-height | max-height: 420px; | Sets maximum height. |
| Box Model | box-sizing | box-sizing: border-box; | Controls how width and height are calculated. |
| Spacing | margin | margin: 1rem; | Sets outside spacing. |
| Spacing | margin-top | margin-top: 1rem; | Sets top outside spacing. |
| Spacing | margin-right | margin-right: 1rem; | Sets right outside spacing. |
| Spacing | margin-bottom | margin-bottom: 1rem; | Sets bottom outside spacing. |
| Spacing | margin-left | margin-left: 1rem; | Sets left outside spacing. |
| Spacing | padding | padding: 1rem; | Sets inside spacing. |
| Spacing | padding-top | padding-top: 1rem; | Sets top inside spacing. |
| Spacing | padding-right | padding-right: 1rem; | Sets right inside spacing. |
| Spacing | padding-bottom | padding-bottom: 1rem; | Sets bottom inside spacing. |
| Spacing | padding-left | padding-left: 1rem; | Sets left inside spacing. |
| Background | background | background: #ffffff; | Background shorthand property. |
| Background | background-color | background-color: #f8f9fa; | Sets background color. |
| Background | background-image | background-image: url("/image.jpg"); | Sets background image. |
| Background | background-size | background-size: cover; | Controls background image size. |
| Background | background-position | background-position: center; | Positions background image. |
| Background | background-repeat | background-repeat: no-repeat; | Controls image repetition. |
| Background | background-attachment | background-attachment: fixed; | Controls background scroll behavior. |
| Background | background-blend-mode | background-blend-mode: multiply; | Controls how background blends with element behind. |
| Borders | border | border: 1px solid #dee2e6; | Border shorthand property. |
| Borders | border-width | border-width: 2px; | Sets border thickness. |
| Borders | border-style | border-style: solid; | Sets border style. |
| Borders | border-color | border-color: #dee2e6; | Sets border color. |
| Borders | border-radius | border-radius: 0.75rem; | Rounds corners. |
| Borders | outline | outline: 3px solid #0d6efd; | Creates focus or highlight outline. |
| Borders | outline-offset | outline-offset: 3px; | Sets outline spacing. |
| Display | display | display: flex; | Controls layout display type. |
| Display | visibility | visibility: hidden; | Hides element while keeping space. |
| Display | opacity | opacity: 0.5; | Controls transparency. |
| Display | overflow | overflow: hidden; | Controls overflowing content. |
| Display | overflow-x | overflow-x: auto; | Controls horizontal overflow. |
| Display | overflow-y | overflow-y: auto; | Controls vertical overflow. |
| Display | float | float: left; | Floats element left or right (legacy layout). |
| Display | clear | clear: both; | Clears floated elements. |
| Position | position | position: relative; | Controls positioning method. |
| Position | top | top: 0; | Sets top offset. |
| Position | right | right: 0; | Sets right offset. |
| Position | bottom | bottom: 0; | Sets bottom offset. |
| Position | left | left: 0; | Sets left offset. |
| Position | z-index | z-index: 10; | Controls stacking order. |
| Position | inset | inset: 0; | Shorthand for top, right, bottom, and left. |
| Flexbox | flex | flex: 1 1 250px; | Flex item shorthand. |
| Flexbox | flex-direction | flex-direction: row; | Controls flex direction. |
| Flexbox | flex-wrap | flex-wrap: wrap; | Allows flex items to wrap. |
| Flexbox | justify-content | justify-content: center; | Aligns items on main axis. |
| Flexbox | align-items | align-items: center; | Aligns items on cross axis. |
| Flexbox | align-self | align-self: flex-start; | Aligns one flex item. |
| Flexbox | gap | gap: 1rem; | Sets spacing between flex/grid items. |
| Flexbox | order | order: 2; | Changes visual order. |
| Flexbox | flex-grow | flex-grow: 1; | Controls flex item growth rate. |
| Flexbox | flex-shrink | flex-shrink: 0; | Controls flex item shrink rate. |
| Flexbox | flex-basis | flex-basis: 200px; | Sets flex item base size. |
| Flexbox | row-gap | row-gap: 1rem; | Sets spacing between rows. |
| Flexbox | column-gap | column-gap: 1rem; | Sets spacing between columns. |
| Grid | grid-template-columns | grid-template-columns: repeat(3, 1fr); | Defines grid columns. |
| Grid | grid-template-rows | grid-template-rows: auto 1fr; | Defines grid rows. |
| Grid | grid-template-areas | grid-template-areas: "header header"; | Creates named grid areas. |
| Grid | grid-column | grid-column: span 2; | Controls column placement. |
| Grid | grid-row | grid-row: span 2; | Controls row placement. |
| Grid | grid-area | grid-area: main; | Places item in named area. |
| Grid | place-items | place-items: center; | Aligns grid items both ways. |
| Grid | place-content | place-content: center; | Aligns grid content both ways. |
| Grid | grid-gap | grid-gap: 1rem; | Shorthand for grid row and column gaps. |
| Grid | grid-auto-columns | grid-auto-columns: 200px; | Sets width of implicitly created columns. |
| Grid | grid-auto-rows | grid-auto-rows: auto; | Sets height of implicitly created rows. |
| Grid | grid-auto-flow | grid-auto-flow: dense; | Controls how auto-placed items flow. |
| Effects | box-shadow | box-shadow: 0 1rem 2rem rgba(0,0,0,.12); | Adds shadow around boxes. |
| Effects | text-shadow | text-shadow: 1px 1px 2px rgba(0,0,0,.3); | Adds shadow to text. |
| Effects | filter | filter: blur(4px); | Applies visual filters. |
| Effects | backdrop-filter | backdrop-filter: blur(10px); | Applies effects behind element. |
| Effects | clip-path | clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); | Clips element to a specific shape. |
| Effects | mask | mask: url(#mask-shape); | Masks element with image or shape. |
| Effects | mix-blend-mode | mix-blend-mode: overlay; | Controls how element blends with backdrop. |
| Transforms | transform | transform: translateY(-4px); | Moves, scales, rotates, or skews. |
| Transforms | transform-origin | transform-origin: center; | Controls transform starting point. |
| Transforms | perspective | perspective: 1000px; | Creates 3D perspective effect. |
| Transforms | transform-style | transform-style: preserve-3d; | Controls 3D child element rendering. |
| Transitions | transition | transition: transform 0.2s ease; | Smoothly changes property values. |
| Transitions | transition-property | transition-property: opacity; | Sets property to transition. |
| Transitions | transition-duration | transition-duration: 0.3s; | Sets transition time. |
| Transitions | transition-delay | transition-delay: 0.1s; | Delays transition start. |
| Animations | animation | animation: fadeIn 0.4s ease; | Animation shorthand property. |
| Animations | animation-name | animation-name: fadeIn; | Sets keyframes name. |
| Animations | animation-duration | animation-duration: 1s; | Sets animation time. |
| Animations | animation-delay | animation-delay: 0.2s; | Delays animation start. |
| Animations | animation-iteration-count | animation-iteration-count: infinite; | Controls repeat count. |
| Animations | animation-fill-mode | animation-fill-mode: forwards; | Controls before/after animation styles. |
| Lists | list-style | list-style: none; | List shorthand property. |
| Lists | list-style-type | list-style-type: disc; | Sets bullet or numbering type. |
| Lists | list-style-position | list-style-position: inside; | Controls marker position. |
| Tables | border-collapse | border-collapse: collapse; | Controls table border merging. |
| Tables | border-spacing | border-spacing: 0.5rem; | Sets spacing between table cells. |
| Tables | caption-side | caption-side: top; | Controls table caption position. |
| Tables | table-layout | table-layout: fixed; | Controls table layout algorithm. |
| Images | object-fit | object-fit: cover; | Controls image fit inside box. |
| Images | object-position | object-position: center; | Controls image crop position. |
| Images | aspect-ratio | aspect-ratio: 16 / 9; | Maintains width-to-height ratio. |
| Interaction | cursor | cursor: pointer; | Controls mouse cursor. |
| Interaction | pointer-events | pointer-events: none; | Controls pointer interaction. |
| Interaction | user-select | user-select: none; | Controls text selection. |
| Interaction | scroll-behavior | scroll-behavior: smooth; | Controls scrolling behavior. |
| Interaction | touch-action | touch-action: none; | Controls touch gesture handling. |
| Interaction | tab-size | tab-size: 4; | Controls tab character width. |
| Logical Properties | margin-inline | margin-inline: 1rem; | Sets horizontal margins (respects text direction). |
| Logical Properties | margin-block | margin-block: 1rem; | Sets vertical margins (respects text direction). |
| Logical Properties | padding-inline | padding-inline: 1rem; | Sets horizontal padding (respects text direction). |
| Logical Properties | padding-block | padding-block: 1rem; | Sets vertical padding (respects text direction). |
| Logical Properties | inset-inline | inset-inline: 0; | Sets inline position offsets. |
| Logical Properties | inset-block | inset-block: 0; | Sets block position offsets. |
| Modern CSS | accent-color | accent-color: #0d6efd; | Styles native form accents. |
| Modern CSS | container-type | container-type: inline-size; | Enables container queries. |
| Modern CSS | container-name | container-name: card; | Names a query container. |
| Modern CSS | color-scheme | color-scheme: light dark; | Supports browser color schemes. |
| Modern CSS | isolation | isolation: isolate; | Creates a new stacking context. |
| Modern CSS | content | content: "●"; | Generates content in pseudo-elements. |