是否可以在文档中为 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 来实现吗?