DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>title>
<style type="text/css">
* html body {
background-color: #bfa;
/* _background-color: yellow;*/
/*
* *background-color: yellow;
*/
/* background-color: yellow\0; */
}
style>
<link rel="stylesheet" type="text/css" href="css/style.css" />
head>
<body>
body>
html>

在选择器前添加 * html 则选择器只有 IE6 可以识别
_background-color: yellow;
*background-color: yellow;
background-color: yellow\0;
CSS Hack 不到万不得已的情况尽量不要使用