# 256 bytes of css
256 bytes of CSS are enough to get a beautiful, readable and adaptive
website. Yes, 256B. It is 0,256 kb. Only 256 char and 6 lines. Even
less minified and gzipped
Use "rem" unit as much as possible to keep user's size choices
Do not set colors to keep user's client preferences
Set a maximum width to 37rem ≈ 72 char to reduce eyes strain.
Remove link colors and set them bold to improve legibility
```
body, pre { padding: 1rem }
body { font: 1.1rem/1.4 system-ui; max-width: 37rem; margin: auto }
pre { overflow: auto; font-size: 1rem; border: 1px solid }
blockquote { font: italic 1rem serif }
a { color: unset; }
img { max-width: 100%; background:#fff; }
```
Remember to have in your header :
```
HTML URL:meta name="viewport" content="width=device-width" /
```
## Voir aussi
D'autres ressources de CSS minimaliste sans avoir besoin de classes.
Dit autrement, il suffit d'écrire du html brut et d'appliquer la
feuille de style :
HTML URL:https://boltcss.com/
HTML URL:https://simplecss.org/