Css

From wikinotes
Revision as of 02:57, 26 September 2021 by Will (talk | contribs) (→‎Example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

cascading stylesheets.

Documentation

homepage https://www.w3.org/Style/CSS/
MDN css https://developer.mozilla.org/en-US/docs/Web/CSS

Tutorials

web.dev learn css https://web.dev/learn/css/

Example

/** ${PROJECT}/mystylesheet.css */

/* selector { property: value; ... } */
body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
  font-size: 20px;
}
<!-- ${PROJECT}/index.html -->

<head>
  <link rel="stylesheet" href="mystylesheet.css" />
</head>

Syntax

css sources
css selectors
css units
css cookbook
css CSSDOM