forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
832 B
25 lines
832 B
8 years ago
|
/****添加计算宽度的--运算符直接需要space****/
|
||
|
/****** common color(常用颜色,可用于普遍场景) *****/
|
||
|
/**** custom color(自定义颜色,用于特定场景) ****/
|
||
|
/*类似ie6的盒子模型 可以在有百分比的时候加border 支持到ie8*/
|
||
|
.border-sizing {
|
||
|
-webkit-box-sizing: border-box;
|
||
|
/*Safari3.2+*/
|
||
|
-moz-box-sizing: border-box;
|
||
|
/*Firefox3.5+*/
|
||
|
-ms-box-sizing: border-box;
|
||
|
/*IE8*/
|
||
|
box-sizing: border-box;
|
||
|
/*W3C标准(IE9+,Safari5.1+,Chrome10.0+,Opera10.6+都符合box-sizing的w3c标准语法)*/
|
||
|
}
|
||
|
.content-sizing {
|
||
|
-webkit-box-sizing: content-box;
|
||
|
/*Safari3.2+*/
|
||
|
-moz-box-sizing: content-box;
|
||
|
/*Firefox3.5+*/
|
||
|
-ms-box-sizing: content-box;
|
||
|
/*IE8*/
|
||
|
box-sizing: content-box;
|
||
|
/*W3C标准(IE9+,Safari5.1+,Chrome10.0+,Opera10.6+都符合box-sizing的w3c标准语法)*/
|
||
|
}
|