ドキュメント内の div 用に別のCSS
ファイルを作成することは可能ですか? これは、ページに含まれる他のファイルDIV
からプロパティを継承するべきではありません。CSS
次の行を使用して、より明確にしようとします。こんなものを期待しています。
<html xmlns = "http://www.w3.org/1999/xhtml" xml:lang = "en" lang = "en">
<head>
<link rel = "stylesheet" type = "text/css" href = "main_style.css" />
</head>
<body>
<div class="main">
<div rel = "stylesheet" href = "sub_style.css"> <!-- This with seperate stylesheet.-->
<!--
Elements here will have style only from sub_style.css and not from main_style.css
-->
</div>
</div>
</body>
</html>
編集: DIV で不可能な場合は、 iframe を使用して達成できますか?