经常用到,每次都想不起来去查,这次把它写下来,省得又忘了:
selector{
property:value; /* 所有浏览器 */
property:value\9; /* 所有IE浏览器 */
+property:value; /* IE7 */
_property:value; /* IE6 */
}
min/max-* 的兼容性写法:
selector{
/* min-height */
min-height:100px;
height:auto !important;
height:100px;
overflow:visible;
/* max-height */
height:auto !important;
height:450px;
max-height:450px;
overflow:hidden;
}
selector{
property:value; /* 所有浏览器 */
property:value\9; /* 所有IE浏览器 */
+property:value; /* IE7 */
_property:value; /* IE6 */
}
min/max-* 的兼容性写法:
selector{
/* min-height */
min-height:100px;
height:auto !important;
height:100px;
overflow:visible;
/* max-height */
height:auto !important;
height:450px;
max-height:450px;
overflow:hidden;
}