svnm
svnm

Reputation: 24308

last 2 versions autoprefixer browserslist

I am using autoprefixer and have a browserslist file to specify the supported browsers. It looks like this, basically the default plus iOS 8:

> 1%
Last 2 versions
iOS 8

I am wondering can I easily see on caniuse.com what exact browser versions: last 2 versions, last 3 versions, last 4 versions etc... gives for each individual browser?

Upvotes: 6

Views: 6366

Answers (1)

maoizm
maoizm

Reputation: 719

use browserl.ist to get the list of browsers satisfying your autoprefixer config, eg. for your case:

http://browserl.ist/?q=%3E+1%25%2C+Last+2+versions%2C+iOS+8

Upvotes: 8

Related Questions