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

Formatting the output with the API


When parsing CSS, the output by default is going to resemble something as shown in the following screenshot:

It looks a really ugly mess, but is in fact the standard format for an AST tree. The trouble is, it's not very helpful if we want to use details from it in our code! To get around this, we need to convert our content into a string format: the simplest method is to use the .toString() method, which is perfect for saving the content to disk.

All of the code for the next exercise is in the T62 – adding a stringifier folder in the code download that accompanies this book.

It's a cinch to use in our Gulp file; let's take a look as part of our next exercise:

  1. We'll start by creating a new Gulp task file. In your usual text editor of choice, add the following code; there is a reasonable amount involved, so we will go through it in sections, beginning with the declarations for the plugins used:

    'use strict';
    var gulp = require('gulp');
    var postcss = require('postcss...