CSS

Styling language.

dhaupin 926986a 818 B Updated

File contents

CSS

Styling language.


When To Use

  • Styling web pages
  • Layouts
  • Animations

What To Do

1. Syntax

selector {
  property: value;
  property: value;
}

/* Comment */

2. Properties

Property What
color Text color
background Background
margin/padding Spacing
display Layout
position Placement

3. Selectors

.element       /* element */
.class         /* class */
#id            /* id */
parent child   /* descendant */
parent > child /* child */

4. Flexbox/Grid

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

Role: CSS Developer
Input: Styles
Output: Visuals

Style.

dhaupin/vant/tree/main/models/public/skills/vant-skill-css commit 926986a836

Frequently asked questions

npx skillmds@latest add dhaupin/css