�PNG  IHDR��;���IDATx��ܻn�0���K�� �)(�pA��� ���7�LeG{�� �§㻢|��ذaÆ 6lذaÆ 6lذaÆ 6lom��$^�y���ذag�5bÆ 6lذaÆ 6lذa{���� 6lذaÆ �`����}H�Fkm�,�m����Ӫ���ô�ô!� �x�|'ܢ˟;�E:���9�&ᶒ�}�{�v]�n&�6� �h��_��t�ڠ͵-ҫ���Z;��Z$�.�P���k�ž)�!��o���>}l�eQfJ�T��u і���چ��\��X=8��Rن4`Vw�l�>����n�G�^��i�s��"ms�$�u��i��?w�bs[m�6�K4���O���.�4��%����/����b�C%��t ��M�ז� �-l�G6�mrz2���s�%�9��s@���-�k�9�=���)������k�B5����\��+͂�Zsٲ ��Rn��~G���R���C����� �wIcI��n7jJ���hۛNCS|���j0��8y�iHKֶۛ�k�Ɉ+;Sz������L/��F�*\��Ԕ�#"5��m�2��[S��������=�g��n�a�P�e�ғ�L�� lذaÆ 6l�^k��̱aÆ 6lذaÆ 6lذa;���� �_��ذaÆ 6lذaÆ 6lذaÆ ���R���IEND�B` # [postcss][postcss]-reduce-initial > Reduce `initial` definitions to the _actual_ initial value, where possible. ## Install With [npm](https://npmjs.org/package/postcss-reduce-initial) do: ``` npm install postcss-reduce-initial --save ``` ## Examples See the [data](data) for more conversions. This data is courtesy of Mozilla. ### Convert `initial` values When the `initial` keyword is longer than the property value, it will be converted: #### Input ```css h1 { min-width: initial; } ``` #### Output ```css h1 { min-width: 0; } ``` ### Convert values back to `initial` When the `initial` value is smaller than the property value, it will be converted: #### Input ```css h1 { transform-box: border-box; } ``` #### Output ```css h1 { transform-box: initial; } ``` This conversion is only applied when you supply a browsers list that all support the `initial` keyword; it's worth noting that Internet Explorer has no support. ## API ### reduceInitial([options]) #### options ##### ignore Type: `Array` Default: `undefined` It contains the Array of properties that will be ignored while reducing its value to initial. Example : `{ ignore : ["min-height"] }` ## Usage See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for examples for your environment. ## Contributors See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md). ## License [Template:CSSData] by Mozilla Contributors is licensed under [CC-BY-SA 2.5]. [template:cssdata]: https://developer.mozilla.org/en-US/docs/Template:CSSData [cc-by-sa 2.5]: http://creativecommons.org/licenses/by-sa/2.5/ MIT © [Ben Briggs](http://beneb.info) [postcss]: https://github.com/postcss/postcss