blob: 25d536d4b4d301da964bd2a49a00159268a7436a [file] [log] [blame]
<html>
<head>
<title>CSS3 media query test: Media query with min- constraint (screen and (min-width: 600px)). Using style attribute, @import css rule.</title>
<link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#at-import" />
<style type="text/css">
p { color: red }
</style>
<style type="text/css">
@import url(import-p-green.css) screen and (min-width: 600px);
</style>
</head>
<body>
<p> This text should be green if viewport width is at least 600px.</p>
</body>
</html>