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:
Open your web browser and navigate to http://caniuse.com/#feat=multicolumn.
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...