我的页面中有一个菜单栏,我没有为此应用 YUI 样式。在此之下,我想使用 YUI 样式的三个文档部分。示例代码:
<?php
include("style.html");
?>
<script src="http://yui.yahooapis.com/3.9.0/build/yui/yui-min.js"></script>
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.9.0/build/grids/grids-min.css">
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.9.0/build/reset-fonts-grids/reset-fonts-grids.css">
</head>
<body>
<div><h1>HEAD</h1></div>
<div id=top>TOP MENU</div> //top is defined in the included style html file
<div class="yui-gb">
<div class="yui-u first">BODY PART</div>
.....
我使用 YUI 的部分很好,但 yui 也会影响其他 div 部分。我该如何解决这个问题?谢谢!