Service workers: Allow HTTPS pages arrived at via HTTP redirect to use SW
[chromium-blink-merge.git] / third_party / polymer / v1_0 / components-chromium / iron-media-query / README.md
blobf577b3cf014344e95b039553727dcfaf4ae9fcdc
1 # iron-media-query
3 `iron-media-query` can be used to data bind to a CSS media query.
4 The `query` property is a bare CSS media query.
5 The `query-matches` property is a boolean representing if the page matches that media query.
7 Example:
9 ```html
10 <iron-media-query query="(min-width: 600px)" query-matches="{{queryMatches}}"></iron-media-query>
11 ```