https://github.com/html5lib/html5lib-python/blob/1a28d721091a2c433c6e8471d14cbb75afd70d1c/html5lib/filters/sanitizer.py#L854 That `elif` section essentially means that those four style properties get allowed regardless of `allowed_css_properties` value. For example, this text: ``` <p style="color: red; float: left; padding: 1em;">blah</p> ``` with this `allowed_css_properties`: ``` ['color'] ``` gives this: ``` <p style="color: red; padding: 1em;">blah</p> ```