主要文件:
home.html(访问:只读)
...
<h1>Heading 1</h1>
...
externalFile.css(访问:只读)
.tagh1 {
margin: 10px 0;
font-family: inherit;
font-weight: bold;
}
myfile.css(访问:读/写)
h1 {
color: #08C;
}
如何.tagh1
在 CSS 规则 (myfile.css) 中包含 (externalFile.css) 的h1
样式,而无需将它们从一个文件复制粘贴到另一个文件?
逻辑答案:
h1 {
color: #08C;
/* Just copy and paste them */
margin: 10px 0;
font-family: inherit;
font-weight: bold;
}
但我不能这样做:)
编辑:
我认为它可能是这样的:
.tag1 {
property1: value1;
property2: value2;
}
.tag2 {
include(.tag1); /* or something */
property3: value3;
}
避免重复代码。