ページにメニューバーがあり、YUIスタイルを適用していません。その下に、YUIスタイルを使用したい3つのドキュメントセクションがあります。コード例:
<?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部分にも影響します。どうすればこれを解決できますか?ありがとうございました!