ページ内の具体的な DIV に CSS ファイルを適用したいと考えています。これはページ構造です:
<link rel="stylesheet" href="style.css" />
...
<body>
<div id="pagina-page" data-role="page">
...
<div id="applyCSS">
(all the elements here must follow a concrete CSS rules)
</div>
...
</body>
次のようにCSSファイルを編集するルールを適用しようとしました(CSSファイルは非常に大きいです):
#applyCSS * { (For all the elements inside "applyCSS" DIV:)
.ui-bar-a {
...
...
}
.ui-bar-a .ui-link-inherit {
...
}
...
}
しかし、その解決策は機能しません。それで、どうすればそれを行うことができますか?