1.条件表达式基础:
2.表达式使用样例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.box {
margin: 200px 0 0 200px;
width: 200px;
height: 200px;
background-color: orange;
}
.box:hover {
}
</style>
<!--cc:ie-->
<!--[if lte IE 7]>
Hello World
<![endif]-->
</head>
<body>
<div class="box"></div>
<script type="text/javascript">
</script>
</body>
</html>