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

Creating your processor


Many developers who work with existing processors such as SASS, less, or Stylus will be accustomed to working with a library that is a necessary dependency, and where it is unlikely that they will be using 100% of the functionality available for their chosen processor.

This is not the case with PostCSS. One of the key attractions is its flexibility; gone are the days when we have excess baggage in our processor that is redundant for our needs! The power of flexibility can also be a shortcoming, where does one start deciding what to include in our processor, I hear you ask?

Throughout the course of this chapter, we will bring together the various elements of the processor we've used in the demos, and work through changes we can make to improve or extend functionality. The key, though, to any processor is that there is no right or wrong answer; each will be different, and they will depend on your requirements.

As time goes by, it is likely that you will find common elements...