私のページの具象DIVにCSSファイルを適用したいと思います。これは、ページの構造である: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 {
...
}
...
}
しかし、そのソリューションが動作しません。 。だから、どうすればいい?あなたが試みることができる
可能な複製:http://stackoverflow.com/questions/12110708/limit-stylesheet-to-one-tag-and-descendents/12553605#12553605 – Pavlo