Assume, for example, that a CSS 2.1 parser encounters this style
sheet:
@import "subs.css";
h1 { color: blue }
@import "list.css";
The second '@import' is illegal according to CSS2.1. The CSS 2.1
parser ignores the whole at-rule, effectively reducing the style sheet
to:
@import "subs.css";
h1 { color: blue }
Description
Illegal example(s):
Assume, for example, that a CSS 2.1 parser encounters this style
sheet:
@import "subs.css";
h1 { color: blue }
@import "list.css";
The second '@import' is illegal according to CSS2.1. The CSS 2.1
parser ignores the whole at-rule, effectively reducing the style sheet
to:
@import "subs.css";
h1 { color: blue }