diff options
| author | Bas Bosman <[email protected]> | 2014-02-22 11:17:58 +0100 |
|---|---|---|
| committer | Bas Bosman <[email protected]> | 2014-03-07 09:01:54 +0100 |
| commit | cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf (patch) | |
| tree | 6a08e87eb348c9ab4ec14059dcb6d662da908a87 /CONTRIBUTING.md | |
| parent | 84a7431dfd036df64df9aa9ecab82a54bd8083d8 (diff) | |
| download | bootstrap-cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf.tar.xz bootstrap-cb7eb674accd24b6b73f26ef23cf4a301b6ebfaf.zip | |
Add autoprefixer
Diffstat (limited to 'CONTRIBUTING.md')
| -rw-r--r-- | CONTRIBUTING.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dbccc8761..8c437df9a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -169,6 +169,7 @@ license your work under the terms of the [MIT License](LICENSE.md). - Always a space after a property's colon (e.g., `display: block;` and not `display:block;`). - End all lines with a semi-colon. - For multiple, comma-separated selectors, place each selector on its own line. +- Don't add vendor prefixed properties to their unprefixed counterparts (e.g., only `box-sizing` and not also include `-webkit-box-sizing`), as this is done automagically at build time. - Attribute selectors, like `input[type="text"]` should always wrap the attribute's value in double quotes, for consistency and safety (see this [blog post on unquoted attribute values](http://mathiasbynens.be/notes/unquoted-attribute-values) that can lead to XSS attacks). - Attribute selectors should only be used where absolutely necessary (e.g., form controls) and should be avoided on custom components for performance and explicitness. - Series of classes for a component should include a base class (e.g., `.component`) and use the base class as a prefix for modifier and sub-components (e.g., `.component-lg`). |
