ie7/ie7/ie8ie9/现代浏览器hack
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>块级元素的display:inline-block属性</title>
<style type="text/css">
p{color:#ccc;//所有浏览器
color:red\9;//所有ie浏览器
color:#000\0;//ie8、ie9
*color:green;ie7、ie6
_color:blue;ie6
}
</style>
</head>
<body>
<p>我是脑残的ie6</p>
<p>我是二货ie7</p>
<p>我是ie8</p>
<p>嘿嘿我是性感的狐狸</p>
</body>
</html>