Book Image

Sass and Compass Designer's Cookbook

By : Bass Jobsen, Stuart Robson
Book Image

Sass and Compass Designer's Cookbook

By: Bass Jobsen, Stuart Robson

Overview of this book

Sass and Compass Designer's Cookbook helps you to get most out of CSS3 and harness its benefits to create engaging and receptive applications. This book will help you develop faster and reduce the maintenance time for your web development projects by using Sass and Compass. You will learn how to use with CSS frameworks such as Bootstrap and Foundation and understand how to use other libraries of pre-built mixins. You will also learn setting up a development environment with Gulp. This book guides you through all the concepts and gives you practical examples for full understanding.
Table of Contents (23 chapters)
Sass and Compass Designer's Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

The Can I Use database


The Can I Use database, which can be found at http://caniuse.com/, provides compatibility tables for the support of HTML5, CSS3, SVG, and other technologies in various browsers. In this recipe, you will learn to find out which vendor prefixes, as discussed in the Using vendor prefixes recipe of this chapter, you will have to use to support the browsers of your requirements.

Getting ready

For this recipe, you only need a web browser.

How to do it...

Use the following steps to learn how to use the Can I Use website to find out which vendor prefixes you will have to use to support your target browsers:

  1. Open your web browser and navigate to http://caniuse.com/#feat=multicolumn.

  2. Now, you will find the support table for the CSS3 Multiple column layout, which will look as follows:

How it works...

The support table tells you that Internet Explorer version 8 and version 9 support the CSS3 Multiple column layout. These browsers are colored red. The table shows the latest version of...