兼容不同浏览器的 CSS Hack 写法
Written by aijun June 22nd, 2011 12:23 PM No Comments Filed under: 资源分享

1、* 符号
IE 浏览器能识别 * 符号,但其他浏览器诸如 Firefox、Opera、Chrome 等不能识别 * 符号。
例:在 Firefox 和 IE 中呈现不同的文字颜色:
color:red;*color:blue;
//在 Firefox 等非 IE 核心浏览器中,文字呈现红色;而 IE 中呈现蓝色。
TAGS: css