18 lines
456 B
HTML
18 lines
456 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>@import test</title>
|
||
|
|
<style>
|
||
|
|
@import "css-import-1.css";
|
||
|
|
@import url("css-import-2.css");
|
||
|
|
@import url(css-import-3.css);
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div>
|
||
|
|
<p class="first">If this is green, <code>@import "string";</code> works!</p>
|
||
|
|
<p class="second">If this is green, <code>@import url("string");</code> works!</p>
|
||
|
|
<p class="third">If this is green, <code>@import url(unquoted-string);</code> works!</p>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|