mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
17 lines
303 B
HTML
17 lines
303 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
@import url("data:text/css,.import { color: green }");
|
|
div { color: red }
|
|
@media {
|
|
.media { color: green }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="import">test</div>
|
|
<div class="media">test</div>
|
|
<body>
|
|
</html>
|