Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including postcss-media-fn with all npm packages installed. Try it out:

/* * Add your CSS code here. * See https://github.com/jonathantneal/postcss-media-fn#features for more examples */ const css = ` h1 { font-size: media( 16px, (min-width: 600px) 20px, (min-width: 1000px) 40px, (min-width: 1400px) 60px ); } `; /* * Add your process configuration here; see * http://api.postcss.org/global.html#processOptions for more details. */ const processOptions = {}; /* * Process the CSS and log it to the console. */ require('postcss-media-fn').process(css, {}, processOptions).then(result => { console.log(result.css); });

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

postcss-media-fn v3.0.0

Use `media()` to assign responsive values

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free