blob: da71b0da380949f0646860c24ea808a4837e70d8 [file] [log] [blame]
<html>
<head>
<title>CSS3 media query test: media query testing constraints with relative values evaluating false (screen and (min-width: 60em)). Using style element, @media css rule.</title>
<link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/#width" />
<style type="text/css">
p { color: green }
@media screen and (min-width: 60em) {
p { color: red }
}
</style>
</head>
<body>
<p> This text should be green if viewport is narrower than 60em. This tests that (min-width: 60em) can evaluate to false.</p>
<div style="width: 60em; background-color: lightblue;"> div of length 60 em </div>
<div style="width: 800px; background-color: lightblue;"> div of length 800px </div>
</body>
</html>