9 lines
180 B
HTML
9 lines
180 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
p { color: red; }
|
|
@import url(https://example.invalid/a.css);
|
|
@supports (color: green) {
|
|
p { color: green; }
|
|
}
|
|
</style>
|
|
<p>This text should be green.</p>
|