[CSS] Add a link related to CSS properties triggering (#197)

This commit is contained in:
Rob Levin 2019-06-01 16:51:21 -07:00 committed by Yangshun Tay
parent 6e3c4cb2fe
commit 0134608c34
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ Firstly, understand that browsers match selectors from rightmost (key selector)
[BEM (Block Element Modifier)](https://bem.info/) methodology recommends that everything has a single class, and, where you need hierarchy, that gets baked into the name of the class as well, this naturally makes the selector efficient and easy to override.
Be aware of which CSS properties trigger reflow, repaint, and compositing. Avoid writing styles that change the layout (trigger reflow) where possible.
Be aware of which CSS properties [trigger](https://csstriggers.com/) reflow, repaint, and compositing. Avoid writing styles that change the layout (trigger reflow) where possible.
###### References