Firefox 3.1 documentation: Media queries
I’ve just completed the documentation for CSS media queries. This is a very, very nifty capability that lets you select different style sheets based on very precise criteria. For example, you can use different style sheets on standard versus widescreen displays, or based on the dimensions of the browser window, or whether the screen is 24-bit color or monochrome.
This is very exciting stuff, and hopefully the documentation will be helpful!
free viagra
buy viagra online
generic viagra
how does viagra work
cheap viagra
buy viagra
buy viagra online inurl
viagra 6 free samples
viagra online
viagra for women
viagra side effects
female viagra
natural viagra
online viagra
cheapest viagra prices
herbal viagra
alternative to viagra
buy generic viagra
purchase viagra online
free viagra without prescription
viagra attorneys
free viagra samples before buying
buy generic viagra cheap
viagra uk
generic viagra online
try viagra for free
generic viagra from india
fda approves viagra
free viagra sample
what is better viagra or levitra
discount generic viagra online
viagra cialis levitra
viagra dosage
viagra cheap
viagra on line
best price for viagra
free sample pack of viagra
viagra generic
viagra without prescription
discount viagra
gay viagra
mail order viagra
viagra inurl
generic viagra online paypal
generic viagra overnight
generic viagra online pharmacy
generic viagra uk
buy cheap viagra online uk
suppliers of viagra
how long does viagra last
viagra sex
generic viagra soft tabs
generic viagra 100mg
buy viagra onli
generic viagra online without prescription
viagra energy drink
cheapest uk supplier viagra
viagra cialis
generic viagra safe
viagra professional
viagra sales
viagra free trial pack
viagra lawyers
over the counter viagra
best price for generic viagra
viagra jokes
buying viagra
viagra samples
viagra sample
cialis
generic cialis
cheapest cialis
buy cialis online
buying generic cialis
cialis for order
what are the side effects of cialis
buy generic cialis
what is the generic name for cialis
cheap cialis
cialis online
buy cialis
cialis side effects
how long does cialis last
cialis forum
cialis lawyer ohio
cialis attorneys
cialis attorney columbus
cialis injury lawyer ohio
cialis injury attorney ohio
cialis injury lawyer columbus
prices cialis
cialis lawyers
viagra cialis levitra
cialis lawyer columbus
online generic cialis
daily cialis
cialis injury attorney columbus
cialis attorney ohio
cialis cost
cialis professional
cialis super active
how does cialis work
what does cialis look like
cialis drug
viagra cialis
cialis to buy new zealand
cialis without prescription
free cialis
cialis soft tabs
discount cialis
cialis generic
generic cialis from india
cheap cialis sale online
cialis daily
cialis reviews
cialis generico
how can i take cialis
cheap cialis si
cialis vs viagra
levitra
generic levitra
levitra attorneys
what is better viagra or levitra
viagra cialis levitra
levitra side effects
buy levitra
levitra online
levitra dangers
how does levitra work
levitra lawyers
what is the difference between levitra and viagra
levitra versus viagra
which works better viagra or levitra
buy levitra and overnight shipping
levitra vs viagra
canidan pharmacies levitra
how long does levitra last
viagra cialis levitra
levitra acheter
comprare levitra
levitra ohne rezept
levitra 20mg
levitra senza ricetta
cheapest generic levitra
levitra compra
cheap levitra
levitra overnight
levitra generika
levitra kaufen


October 10th, 2008 at 1:14 AM
The “scan” property is listed as accepting a value, but the example uses the value “progressive”. Copy-paste-leftover?
October 10th, 2008 at 1:38 AM
Jens –
Not sure what you mean; “progressive” is used to query if the device is progressive scan. Is there a particular reason you think that’s incorrect? It’s used as an example in the specification.
October 10th, 2008 at 9:38 AM
bug: ‘media’ is not a media_type, so the example “media and not(color)” is not valid.
bugs: ‘value:’ field is often incorrectly given value type . For example,
color and monochrome value types are , not ;
device-aspect-ratio value type is / , not ;
resolution value type is , not ;
scan value type is progressive | interlaced, not .
bug: does not explain media_type values, nor gives a link to the spec implemented (is it css 2.1§7 ?)
bug: this page does not specify how Firefox or Gecko (to include Fennec) implements this specification. For example, I assume it uses the ’screen’ media type for computer screen output, and ‘print’ for printer output.
Does it ignore all the rest?
Does Firefox use ‘projection’ or ‘tv’ media type if it is in full screen mode?
Does Fennec use ‘handheld’ media type in preference to ’screen’?
Does Firefox use ‘handheld’ media type on handheld tablets (how can I tell Firefox to do so?)
For width and height: does Gecko recompute the applicable media styles (width height) if I resize the window or pane?
specification bug: min is “greater than or equal to” and max is “less than or equal to” so there is no way to specify two exclusive ranges that abut. For example, if a page has
In this case, a square media device should load both.
(An unnecessary download. Order in page specifies which prevails.)
But if instead the page has
In this case a paperstock card with print area 2500/2400 pixels would fall between and load neither. You can make the gap smaller by using higher numbers like 100/100 and 101/100, but can’t eliminate it.
October 10th, 2008 at 9:46 AM
[try last part again, wordpress elided link element examples above]
specification bug: min is “greater than or equal to” and max is “less than or equal to” so there is no way to specify two exclusive ranges that abut. For example, if a page has
<link rel=”stylesheet” media=”(max-device-aspect-ratio: 1/1)” href=”portrait.css”>
<link rel=”stylesheet” media=”(min-device-aspect-ratio: 1/1)” href=”landscape.css”>
In this case, a square media device should load both.
(An unnecessary download. Order in page specifies which prevails.)
But if instead the page has
<link rel=”stylesheet” media=”(max-device-aspect-ratio: 10/10)” href=”portrait.css”>
<link rel=”stylesheet” media=”(min-device-aspect-ratio: 11/10)” href=”landscape.css”>
In this case a printer containing paperstock card with print area 2500/2400 pixels would fall between and load neither. You can make the gap smaller by using higher numbers like 100/100 and 101/100, but can’t eliminate it.
October 10th, 2008 at 9:51 AM
[try value types bug again using < and >]
bugs: ‘value:’ field is often incorrectly given value type . For example,
color and monochrome value types are <integer>, not <length>;
device-aspect-ratio value type is <integer> / <integer>, not <length>;
resolution value type is <resolution>, not <length>;
scan value type is progressive | interlaced, not <length>.
October 11th, 2008 at 5:43 PM
The “scan” property is listed as accepting a [length] value, but that makes no sense. The article should list the allowed values, one of them (judging from the example) being “progressive”.
(Originally, I wrote “length” with the greater than/less than signs, but the blog ate the “tag”. How about a preview mode so I could have been warned before posting the comment?)
October 12th, 2008 at 8:01 AM
I’ve addressed most of the issues listed in these comments, except for the ones that require engineers to explain how Firefox works internally. I’ll update with that information once I have it. Thanks for the great feedback!
October 12th, 2008 at 12:06 PM
The remaining issues have been address, except the one that requires a note to the working group, which I’ll be taking care of next.