Book Image

Mastering PostCSS for Web Design

By : Alex Libby
Book Image

Mastering PostCSS for Web Design

By: Alex Libby

Overview of this book

PostCSS is a tool that has quickly emerged as the future of existing preprocessors such as SASS and Less, mainly because of its power, speed, and ease of use. This comprehensive guide offers in-depth guidance on incorporating cutting-edge styles into your web page and at the same time maintaining the performance and maintainability of your code. The book will show how you can take advantage of PostCSS to simplify the entire process of stylesheet authoring. It covers various techniques to add dynamic and modern styling features to your web pages. As the book progresses, you will learn how to make CSS code more maintainable by taking advantage of the modular architecture of PostCSS. By the end of this book, you would have mastered the art of adding modern CSS effects to web pages by authoring high performing, maintainable stylesheets.
Table of Contents (21 chapters)
Mastering PostCSS for Web Design
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Compiling with other preprocessors


Yet there is one problem—so far, all of our work using Pleeease is PostCSS-based; what if we had been using a processor such as SASS as the basis for producing our code?

Unfortunately, this is where Pleeease falls down—although it does include support for SASS, Stylus, and Less, it is still very experimental. An example of where this causes an issue is in nesting; Pleeease has yet to support nesting when configured to use SASS. This reduces the appeal of using Pleeease—after all, one of the key reasons for using PostCSS is to remove any dependency on libraries such as SASS!

To get around this means using the gulp-sass plugin. This is a wrapper for the libsass library. To achieve this, we would add a task such as this to our Gulp task file:

When using this method, we can pre-compile our SASS code to valid CSS before transforming it with PostCSS plugins. The trouble is, it seems an inefficient way to compile our code—there is a better alternative, in the form...