Updated CSSStyleGuide (markdown)

Jamal Carvalho 2020-09-24 17:29:18 -04:00
parent bf441acb1e
commit d631c773b5

@ -208,4 +208,13 @@ Wrong:
/* Sequence of simple selectors. */
button.foo.bar {
...
}
}
```
## Images
Add height and width attributes to images in the html markup to help minimize layout shift during page load.
```
<img src="url/to/image.png" height="240" width="160">
```