It’s normal to know what you are searching for, to know how to do something, but what was the naming again? That’s quite relatable, that’s why I am creating this cheat sheet. So that I am able to quickly find all things css.

Whole CSS reference on W3Schools Want the brother-in-law of this cheat sheet? (it’s the one about HTML)

Flexbox

To enable Flexbox, apply display: flex; to the container.

Flex-Properties

PropertyDescriptionValuesExampleApplicable To
flex-directionDirection of flex container itemsrow, row-reverse, column, column-reverseflex-direction: column;Container
justify-contentAligns items along the main axisspace-between, flex-start, flex-end, center, space-around, space-evenly, initial, inheritjustify-content: space-between;Container
flex-wrapControls if items should wrap to the next line/columnnowrap, wrap, wrap-reverse, initial, inheritflex-wrap: wrap;Container
align-contentAligns items along the cross axisstretch, center, flex-start, flex-end, space-between, space-around, space-evenly, initial, inheritalign-content: center;Container
flex-basisInitial length of a flexible itemnumber (2rem), auto, initial, inheritflex-basis: 100px;Child
flex-flowShorthand for flex-direction and flex-wrapinitial, inherit, flex-wrap values, flex-direction valuesflex-flow: row-reverse wrap;Container
flex-growRelative growth factor for flexible itemsnumber (12), initial, inheritdiv:nth-of-type(2) {flex-grow: 3;}Child
flex-shrinkRelative shrink factor for flexible itemsnumber (7), initial, inheritdiv:nth-of-type(2) {flex-shrink: 3;}Child

Other Properties

PropertyDescriptionValuesExample
word-wrapAllows breaking of long wordsnormal, break-word, initial, inheritword-wrap: break-word;
word-spacingAdjusts white space between wordsnormal, number (10vw), initial, inheritword-spacing: 30px;
word-breakControls how words break at the end of a linenormal, break-all, keep-all, break-word, initial, inheritword-break: break-all;
user-selectControls user selectionauto, none, text, alluser-select: none;
white-spaceHandles white space inside an elementnormal, nowrap, pre, pre-line, pre-wrap, initial, inheritwhite-space: pre-line;

Additional Properties

PropertyDescriptionValuesExample
marginSets the margin of an elementlength, auto, initial, inheritmargin: 10px;
paddingSets the padding of an elementlength, auto, initial, inheritpadding: 20px;
borderSets the border of an elementwidth, style, color, initial, inheritborder: 1px solid #000;
border-radiusSets the border radius of an elementlength, percentage, initial, inheritborder-radius: 10px;
background-colorSets the background color of an elementcolor, transparent, initial, inheritbackground-color: #f0f0f0;
colorSets the text color of an elementcolor, transparent, initial, inheritcolor: #333;
font-sizeSets the font size of textlength, percentage, initial, inheritfont-size: 16px;
font-weightSets the font weight of textnormal, bold, bolder, lighter, initial, inheritfont-weight: bold;
text-alignAligns text within an elementleft, right, center, justify, initial, inherittext-align: center;
text-decorationAdds decoration to textunderline, overline, line-through, none, initial, inherittext-decoration: underline;
displaySets the display behavior of an elementinline, block, flex, none, initial, inheritdisplay: inline-block;
positionSets the positioning method of an elementstatic, relative, absolute, fixed, initial, inheritposition: relative;
z-indexSets the stacking order of an elementnumber, auto, initial, inheritz-index: 1;
box-shadowAdds a shadow to an elementoffset-x, offset-y, blur-radius, spread-radius, color, inset, initial, inheritbox-shadow: 5px 5px 10px #888888;
opacitySets the opacity level of an elementnumber (0-1), initial, inheritopacity: 0.8;
transitionSets the transition properties of an elementproperty, duration, timing-function, delay, initial, inherittransition: background-color 0.3s ease;
transformApplies a 2D or 3D transformation to an elementtransform-function, initial, inherittransform: translate(50px, 20px);
line-heightSets the height of a line of textnumber, normal, length, percentage, initial, inheritline-height: 1.5;
letter-spacingAdjusts the space between charactersnormal, length, initial, inheritletter-spacing: 2px;
text-transformControls the capitalization of textnone, capitalize, uppercase, lowercase, initial, inherittext-transform: uppercase;
overflowSpecifies how content should behave when it’s larger than the boxvisible, hidden, scroll, auto, initial, inheritoverflow: hidden;
cursorDefines the type of cursor to be displayedauto, default, pointer, text, move, initial, inheritcursor: pointer;
list-styleSets the style of the list markerlist-style-type, list-style-position, list-style-image, initial, inheritlist-style: square inside url("sqpurple.gif");
text-shadowAdds a shadow to textoffset-x, offset-y, blur-radius, color, initial, inherittext-shadow: 2px 2px 4px #888888;
box-sizingDefines how the width and height of an element are calculatedcontent-box, border-box, initial, inheritbox-sizing: border-box;
object-fitSpecifies how an or fill, contain, cover, none, scale-down, initial, inheritobject-fit: cover;
object-positionSpecifies the alignment of an or percentage, length, left, center, right, top, bottom, initial, inheritobject-position: center 20%;
outlineSets the style of an element’s outlineoutline-width, outline-style, outline-color, initial, inheritoutline: 2px solid #000;
outline-offsetOffsets the outline from the borderlength, initial, inheritoutline-offset: 5px;
resizeSpecifies whether an element is resizablenone, both, horizontal, vertical, initial, inheritresize: both;
tab-sizeSets the number of spaces a tab character should displaynumber, initial, inherittab-size: 4;
appearanceAllows elements to be styled using platform-native styling based on the operating system’s themeauto, none, initial, inheritappearance: none;
clip-pathClips an element to a basic shape or reference boxurl(), inset(), circle(), ellipse(), polygon(), initial, inheritclip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
filterApplies graphical effects like blur or color shift to an elementfilter-function, initial, inheritfilter: blur(5px);
backface-visibilityDefines whether or not an element should be visible when not facing the screenvisible, hidden, initial, inheritbackface-visibility: hidden;

CSS Grid Cheat Sheet

Basics

To enable CSS Grid, apply display: grid; to the container.

Grid Properties

PropertyDescriptionValuesExampleApplicable To
grid-template-columnsDefines the columns of the gridlength, percentage, auto, repeat(), initial, inheritgrid-template-columns: 100px 1fr 2fr;Container
grid-template-rowsDefines the rows of the gridlength, percentage, auto, repeat(), initial, inheritgrid-template-rows: 50% auto;Container
grid-template-areasDefines named grid areasnone, identifier, initial, inheritgrid-template-areas: "header header" "main sidebar" "footer footer";Container
grid-templateA shorthand for defining columns, rows, and areasvalues for grid-template-columns, grid-template-rows, grid-template-areasgrid-template: "header header" 1fr / 1fr 2fr;Container
grid-column-gapSets the size of the gap between columnslength, percentage, initial, inheritgrid-column-gap: 10px;Container
grid-row-gapSets the size of the gap between rowslength, percentage, initial, inheritgrid-row-gap: 20px;Container
grid-gapA shorthand for defining column and row gapsvalues for grid-column-gap, grid-row-gapgrid-gap: 10px 20px;Container
grid-auto-columnsSets the size of implicitly created columnslength, percentage, auto, initial, inheritgrid-auto-columns: 100px;Container
grid-auto-rowsSets the size of implicitly created rowslength, percentage, auto, initial, inheritgrid-auto-rows: minmax(100px, auto);Container
grid-auto-flowControls how auto-placed items are inserted in the gridrow, column, dense, initial, inheritgrid-auto-flow: dense;Container

Positioning Items

PropertyDescriptionValuesExampleApplicable To
grid-areaAssigns a grid item to a named grid areaname, row-start / column-start / row-end / column-end, initial, inheritgrid-area: header;Child
grid-columnSpecifies where a grid item should be placed on the gridstart / end, span, initial, inheritgrid-column: 2 / span 3;Child
grid-rowSpecifies where a grid item should be placed on the gridstart / end, span, initial, inheritgrid-row: 1 / span 2;Child

Alignment and Justification

PropertyDescriptionValuesExampleApplicable To
justify-itemsAligns grid items along the inline axisstart, end, center, stretch, initial, inheritjustify-items: center;Container
align-itemsAligns grid items along the block axisstart, end, center, stretch, initial, inheritalign-items: end;Container
place-itemsA shorthand for justify-items and align-itemsvalues for justify-items and align-itemsplace-items: center start;Container
justify-selfAligns a grid item along the inline axisstart, end, center, stretch, initial, inheritjustify-self: end;Child
align-selfAligns a grid item along the block axisstart, end, center, stretch, initial, inheritalign-self: center;Child
place-selfA shorthand for justify-self and align-selfvalues for justify-self and align-selfplace-self: start end;Child

CSS Animation Cheat Sheet

Basics of CSS Animations

To create animations in CSS, you need to use the @keyframes rule and the animation property.

1. @keyframes Rule

Defines the animation sequence. You can specify keyframes at various percentages of the animation duration.

@keyframes slide-in {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

2. animation Property

Applies the animation to an element, specifying the name, duration, timing function, delay, iteration count, and direction.

.element {
  animation: slide-in 1s ease-out 0.5s 1 forwards;
}
  • slide-in: Name of the keyframes rule.
  • 1s: Duration of the animation.
  • ease-out: Timing function (e.g., ease, linear, ease-in-out).
  • 0.5s: Delay before the animation starts.
  • 1: Number of iterations (or ‘infinite’ for continuous).
  • forwards: Animation should retain its final state.

Common Animation Properties

1. animation-name

Specifies the name of the @keyframes you want to use.

.element {
  animation-name: slide-in;
}

2. animation-duration

Sets the duration of the animation.

.element {
  animation-duration: 2s;
}

3. animation-timing-function

Defines the speed curve of the animation.

.element {
  animation-timing-function: ease-in-out;
}

4. animation-delay

Delays the start of the animation.

.element {
  animation-delay: 0.5s;
}

5. animation-iteration-count

Specifies the number of times an animation should run.

.element {
  animation-iteration-count: 3;
}

6. animation-direction

Defines whether an animation should play in reverse on alternate cycles.

.element {
  animation-direction: alternate;
}

7. animation-fill-mode

Specifies a style applied to an element when the animation is not playing.

.element {
  animation-fill-mode: forwards;
}

8. animation-play-state

Pauses or plays the animation.

.element {
  animation-play-state: paused;
}

Example Here’s a simple example combining these properties:

.element {
  animation: slide-in 1s ease-out 0.5s infinite alternate;
}

This will make the element slide in, taking 1 second, easing out, starting after a 0.5-second delay, repeating infinitely, and alternating direction on each cycle.

Feel free to customize these properties based on your specific animation needs!