<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> |