blob: 16cf2d5f73d8d6221d893225ab2839a265dc55ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
tags:
- css
---
CSS is used to style [[HTML]].
Three ways to load:
- `<link rel="stylesheet" href="pathto.css">`
- `<style>css content</style>`
- or style attributes on elements
Link is preferred: easier to work with everything in 1 place; browser can cache file.
Both link and style blocks should go in the `<head>` to prevent repainting of elements.
|