博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css学习知识点
阅读量:6481 次
发布时间:2019-06-23

本文共 1463 字,大约阅读时间需要 4 分钟。

各个前缀所代表的浏览器:

Webkit: chrome, safari【也有可能是opera】

Moz: 火狐

Ms: 主要是IE

O: opera

border-radius:  IE9  -webkit- ,  -moz-

background-image,background-origin, background-clip ie9  无前缀

Background-size: ie9    -webkit-   -moz-   -o-

background-origin: border-box, padding-box, content-box

 

渐变: IE10, 所有渐变的前缀: -webkit- ,  -moz- ,  -o-

Linear-gradient: 线性渐变 语法

①: Background: linear-gradient(direction, color1, color2, ......),默认: direction: 从上到下。如:

Background:-webkit-linear-gradient(blue, red);

Background:-moz-linear-gradient(blue, red);

Background:-o-linear-gradient(blue, red);

Background:linear-gradient(blue, red);

 

注意direction的方向上的不同:如 【从左到右】

Background:-webkit-linear-gradient(left, blue, red);   

//注意-webkit-的方向的写法

Background:-moz-linear-gradient(right, blue, red);

Background:-o-linear-gradient(right, blue, red);

Background:linear-gradient(to right, blue, red); //标准写法

 

② background:linear-gradient(angel, color1, color2),

0deg: 表示从下(color1)到上(color2)的渐变

90deg: 表示从左(color1)到右(color2)的渐变

 

文本效果:

Text-shadow: ie10 ,

h1{ background-color: #ddd;

text-shadow: 2px 2px 4px #000;

color: #fff;

padding: 6px 10px;}

 

Box-shadow: ie9, 如 -webkit- , -moz-

div{ width:300px;

   height:100px;

background-color:yellow;

box-shadow: 0px 0px 15px #888888; }

 

Word-break: 不兼容opera

字体:@font-face: ie9

@font-face

{
font-family: myFirstFont;
src: url(引入字体文件);
}

 

2D动画篇

 

Transform, transform-origin:    IE9,  -webkit-,  -ms-, -webkit-, -o-

 

------------------未待完续,敬请期待。

转载于:https://www.cnblogs.com/lee90/p/5833222.html

你可能感兴趣的文章
AE 线编辑
查看>>
软件设计之UML—UML的构成[上]
查看>>
[SPLEB]CodeSmith原理剖析(1)
查看>>
如何使用AdMob中介界面?
查看>>
分享一个shell脚本:通过Jumper机器来创建Jumper和target机器账号
查看>>
UITableViewCell分割线不是左对齐的问题
查看>>
CentOS7 编译安装PHP7
查看>>
MySQL常见错误代码及代码说明
查看>>
Cglib动态代理基础使用
查看>>
技术人员,为什么会苦逼
查看>>
使用126邮箱发送邮件的python脚本
查看>>
Maven
查看>>
缓存系统在游戏业务中的特异性
查看>>
Ngrok搭建自己的内网穿透
查看>>
redis的基本数据类型
查看>>
.NET 同步与异步之锁(Lock、Monitor)(七)
查看>>
前端大牛们都学过哪些?
查看>>
在iOS当中发送电子邮件和短信
查看>>
python的单例模式
查看>>
13~1003的和
查看>>