about summary refs log tree commit diff stats
path: root/test/layout/media-query.html
blob: b450807f6648a0cdf7a476596201d9c8f505bfab (plain) (blame)
1
2
3
4
5
6
7
8
9
<style>
@mediA (WiDtH >= 1px) and (HeiGhT < 10000px) {
	#red { color: red }
}
@media (width >= 1px 2px) {
	#red { color: blue }
}
</style>
<div id=red>red</div>