可能重复:
取消继承(重置)特定元素的 CSS 样式?
我有一个页面加载具有不同 CSS 属性的外部 CSS 文件。
是否可以在同一页面内创建一个元素,并且专门针对该元素不加载任何 CSS?
例如:
<style type="text/css">
p {
background-color:#000000;
width:550px;
}
</style>
<p>This should get the P styling from the style tag</p>
<p>This should NOT get the P styling</p>