CSS Cheat Sheet

HTML Cheat SheetCSS Cheat SheetJavaScript BasicsJavaScript IntermediateJavaScript AdvancedJavaScript DOMAsynchronous JavaScript

0. Text & Font Typography

Used to style text appearance and spacing.

0.1 Font Properties

0.2 Text Appearance & Formatting

0.3 Text Wrapping & Overflow

0.4 Text Direction & Writing Mode

0.5 Web Fonts & @font-face

0.6 Shadows

0.7 Comments

1. CSS Basics

1.1 Selectors

Basic Selectors

Combination Selectors

Attribute Selectors

Pseudo-classes

Pseudo-elements

Specificity and Cascade

1.2 Properties

Background and gradient

Shadow & Effects Properties

1.3 Values

Colors

Length Units

Absolute Units
Relative Units
Unit Table
UnitTypeExample UsageNotes
pxAbsolutewidth: 100px;Fixed size, most common.
cmAbsolutewidth: 5cm;Used in print.
mmAbsolutewidth: 10mm;Used in print.
inAbsolutewidth: 2in;1 inch = 2.54 cm.
ptAbsolutefont-size: 12pt;1 pt = 1/72 inch.
pcAbsolutewidth: 3pc;1 pc = 12 pt.
emRelativefont-size: 2em;Relative to parent font size.
remRelativefont-size: 1.5rem;Relative to root font size.
exRelativeline-height: 2ex;Based on “x” height.
chRelativewidth: 10ch;Based on “0” width.
vwRelativewidth: 50vw;% of viewport width.
vhRelativeheight: 75vh;% of viewport height.
vminRelativewidth: 10vmin;% of smaller viewport side.
vmaxRelativewidth: 10vmax;% of larger viewport side.

Display Values

Positioning Values

Border Styles

2. Display and Positioning

Used to define how elements are positioned on the page.

2.1 Display & Visibility

2.2 Positioning

2.3 Overflow & Clipping

2.4 Float & Clear

3. CSS Box Model

Defines spacing, sizing, and borders of elements.

3.1 Spacing Properties

3.2 Border Properties

3.3 Dimension Properties

3.4 Box Model Behavior

4. CSS Flexbox Layout

Flexbox (Flexible Box Layout) is a one-dimensional layout model that allows for responsive designs
and efficient space distribution between items within a container.

4.1 Displaying a Flex Container

4.2 Flex Container Properties

4.2.1 flex-direction

4.2.2 flex-wrap

4.2.3 justify-content

4.2.4 align-items

4.2.5 align-content

4.3 Flex Item Properties

4.3.1 flex-grow

4.3.2flex-shrink

4.3.3flex-basis

4.3.4flex

4.3.5align-self

4.4 Flexbox Shorthand

4.4.1flex shorthand

4.4.2gap

4.5 Flexbox Alignment & Ordering

4.5.1order

4.5.2 flex-direction andflex-wrap combination

4.6 Responsive Flexbox Design

4.7 Nested Flex Containers

5. CSS Grid Layout

CSS Grid Layout is a powerful two-dimensional system for building complex web layouts.
It allows you to arrange content into rows and columns, giving you more control over both horizontal and vertical alignment.

5.1 Displaying a Grid Container

5.2 Grid Container Properties

5.2.1grid-template-columns

5.2.2grid-template-rows

5.2.3grid-template-areas

5.2.4grid-gap (or gap)

5.2.5grid-auto-rows

5.2.6grid-auto-columns

5.2.7justify-items

5.2.8align-items

5.2.9place-items

5.2.10justify-content

5.2.11align-content

5.2.12place-content

5.3 Grid Item Properties

5.3.1 grid-column,grid-column

5.3.2grid-row, grid-row

5.3.3grid-column

5.3.4grid-row

5.3.5grid-area

5.3.6justify-self

5.3.7align-self

5.3.8place-self

5.4 Grid Shorthand

5.4.1grid

5.5 Responsive Grid Design

5.5.1 Media Queries with Grid

5.5.2 Auto-Fit and Auto-Fill

5.6 Nested Grid Containers

6. Transitions & Animations

6.1 Transitions

6.2 Animations

7. Transform

The transform property allows elements to be visually manipulated in 2D or 3D space,
including translation, rotation, scaling, and skewing.

7.1 2D Transformations

7.2 3D Transformations

7.3 Additional Transform Properties

8. CSS Responsive Design

Responsive design ensures that web pages adapt to different screen sizes and devices using
flexible layouts, images, and media queries.

8.1 Viewport & Scaling

8.2 Flexible Layouts

8.3 Media Queries

8.4 Fluid Typography

8.5 Flexible Grid & Flexbox

8.6 Responsive Images & Media

8.7 Mobile-First vs. Desktop-First

9. Variables / Custom Props

CSS variables, also known as custom properties,
allow you to define reusable values throughout your stylesheet.

9.1 Defining & Using Variables

9.2 Scope & Inheritance

9.3 Updating Variables Dynamically

9.4 Practical Use Cases

9.5 Limitations

10. Advanced Concepts

Advanced CSS techniques for creating dynamic, flexible, and visually enhanced designs.

10.1 Variables (Custom Properties)

CSS variables, also known as custom properties, allow dynamic and reusable styling.

10.2 CSS Functions

CSS functions enable dynamic calculations, adaptive designs, and reusable styles.

10.2.1calc()

10.2.2var()

10.2.3min(), max(), clamp()

10.3 Filters and Blend Modes

Enhance visuals using effects and blending techniques.

Filters (filter)

Blend Modes (mix-blend-mode,background-blend-mode)

10.4 Clip-path and Masking

Controls element visibility using geometric shapes or images.

10.4.1 Clip-path (clip-path)

10.4.2 Masking (mask, mask-image)

10.5 CSS Shapes