huiminxu / learn-css

css-learning

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

learn-css

css-learning

css 揭秘

http://play.csssecrets.io/

前置

网站

1.https://developer.mozilla.org/en-US/docs/Web

2.https://webplatform.github.io/

3.https://modernizr.com/

4.https://caniuse.com/

css 兼容

  1. modernizr
  2. 回退机制
background: rgb(255, 128, 0);   // 普通颜色
background: -moz-linear-gradient (odeg, yellow, red); //前缀
background:-0-linear-gradient(Odeg, yellow, red); //前缀
background:-webkit-linear-gradient (@deg, yellow, red); //前缀
background: linear-gradient (g0deg, yellow, red); 
}
  1. js 检测某个样式是否支持

image

About

css-learning