Archive for 四月 20th, 2012

CSS在IE中的一些HACK

星期五, 四月 20th, 2012

了解一下就可以了,不建议广泛使用。。。

* html #selector {} /* ie 6 */
*+html #selector {} /* ie 7 */

_property:value; /* ie 6 */
*property:value; /* ie 6/7 */
property:value!ie; /* ie 6/7 */
property:value\0; /* ie 8/9 */
property:value\9\0; /* ie 8/9 */ 某些只支持ie9【background-color:red\9\0;】,某些支持8和9【background:red\9\0;】,不建议使用
property /*\**/:value\9; /* ie 7/8/9 */
property:value\9; /* ie 6/7/8/9 */ font缩写不支持
property /**/:value; /* ! ie 6 */ 除IE6之外的所有浏览器

更多更详细的参考:http://www.swordair.com/tools/css-hack-table/