postcss-clamp:PostCSS插件,将clip()转换为minmax的组合

时间:2024-06-17 11:26:14
【文件属性】:

文件名称:postcss-clamp:PostCSS插件,将clip()转换为minmax的组合

文件大小:85KB

文件格式:ZIP

更新时间:2024-06-17 11:26:14

css postcss max min clamp

PostCSS夹 插件,将 clamp()转换为min/max组合。 该插件可转换此CSS: . foo { width : clamp ( 10 px , 4 em , 80 px ); } 到这个: . foo { width : max ( 10 px , min ( 4 em , 80 px )); } 或在启用选项的情况下precalculate : . foo { width : clamp ( 10 em , 4 px , 10 px ); } /* becomes */ . foo { width : max ( 10 em , 14 px ); } 安装方式 $ npm install postcss postcss-clamp --save-dev or $ yarn add --dev postcss postcss-clamp 用法 使


【文件预览】:
postcss-clamp-master
----.gitignore(60B)
----README.md(2KB)
----INSTALL.md(3KB)
----CHANGELOG.md(408B)
----index.test.js(4KB)
----LICENSE(1KB)
----package.json(1KB)
----index.js(3KB)
----.npmignore(104B)
----.travis.yml(189B)
----.editorconfig(148B)
----yarn.lock(199KB)

网友评论