Media keyword in html

CSS @media Rule

Change the background color of the element to «lightblue» when the browser window is 600px wide or less:

More «Try it Yourself» examples below.

Definition and Usage

The @media rule is used in media queries to apply different styles for different media types/devices.

Media queries can be used to check many things, such as:

  • width and height of the viewport
  • width and height of the device
  • orientation (is the tablet/phone in landscape or portrait mode?)
  • resolution

Using media queries are a popular technique for delivering a tailored style sheet (responsive web design) to desktops, laptops, tablets, and mobile phones.

You can also use media queries to specify that certain styles are only for printed documents or for screen readers (mediatype: print, screen, or speech).

In addition to media types, there are also media features. Media features provide more specific details to media queries, by allowing to test for a specific feature of the user agent or display device. For example, you can apply styles to only those screens that are greater, or smaller, than a certain width.

Browser Support

The numbers in the table specifies the first browser version that fully supports the @media rule.

CSS Syntax

meaning of the not, only and and keywords:

not: The not keyword inverts the meaning of an entire media query.

only: The only keyword prevents older browsers that do not support media queries with media features from applying the specified styles. It has no effect on modern browsers.

and: The and keyword combines a media feature with a media type or other media features.

They are all optional. However, if you use not or only, you must also specify a media type.

You can also have different stylesheets for different media, like this:

More Examples

Example

Hide an element when the browser’s width is 600px wide or less:

Example

Use mediaqueries to set the background-color to lavender if the viewport is 800 pixels wide or wider, to lightgreen if the viewport is between 400 and 799 pixels wide. If the viewport is smaller than 400 pixels, the background-color is lightblue:

body <
background-color: lightblue;
>

@media screen and (min-width: 400px) body background-color: lightgreen;
>
>

@media screen and (min-width: 800px) body background-color: lavender;
>
>

Example

Create a responsive navigation menu (displayed horizontally on large screens and vertically on small screens):

Example

Use media queries to create a responsive column layout:

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) .column width: 50%;
>
>

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) .column width: 100%;
>
>

Читайте также:  Php при подключении через include

Example

Use media queries to create a responsive website:

Example

Media queries can also be used to change layout of a page depending on the orientation of the browser. You can have a set of CSS properties that will only apply when the browser window is wider than its height, a so called «Landscape» orientation.

Use a lightblue background color if the orientation is in landscape mode:

Example

Use mediaqueries to set the text color to green when the document is displayed on the screen, and to black when it is printed:

Example

Comma separated list: add an additional media query to an already existing one, using a comma (this will behave like an OR operator):

/* When the width is between 600px and 900px OR above 1100px — change the appearance of

*/
@media screen and (max-width: 900px) and (min-width: 600px), (min-width: 1100px) div.example font-size: 50px;
padding: 50px;
border: 8px solid black;
background: yellow;
>
>

Источник

Using media queries

Media queries allow you to apply CSS styles depending on a device’s general type (such as print vs. screen) or other characteristics such as screen resolution or browser viewport width. Media queries are used for the following:

  • To conditionally apply styles with the CSS@media and @importat-rules.
  • To target specific media for the , , , and other HTML elements with the media= attribute.
  • To test and monitor media states using the Window.matchMedia() and EventTarget.addEventListener() methods.

Note: The examples on this page use CSS’s @media for illustrative purposes, but the basic syntax remains the same for all types of media queries.

Syntax

A media query is composed of an optional media type and any number of media feature expressions, which may optionally be combined in various ways using logical operators. Media queries are case-insensitive.

  • Media types define the broad category of device for which the media query applies: all , print , screen . The type is optional (assumed to be all ) except when using the not or only logical operators.
  • Media features describe a specific characteristic of the user agent, output device, or environment:
    • any-hover
    • any-pointer
    • aspect-ratio
    • color
    • color-gamut
    • color-index
    • device-aspect-ratio Deprecated
    • device-height Deprecated
    • device-width Deprecated
    • display-mode
    • dynamic-range
    • forced-colors
    • grid
    • height
    • hover
    • inverted-colors
    • monochrome
    • orientation
    • overflow-block
    • overflow-inline
    • pointer
    • prefers-color-scheme
    • prefers-contrast
    • prefers-reduced-motion
    • prefers-reduced-transparency Experimental
    • resolution
    • scripting
    • update
    • video-dynamic-range
    • width .

    A media query computes to true when the media type (if specified) matches the device on which a document is being displayed and all media feature expressions compute as true. Queries involving unknown media types are always false.

    Note: A style sheet with a media query attached to its tag will still download even if the query returns false , the download will happen but the priority of downloading will be much lower. Nevertheless, its contents will not apply unless and until the result of the query changes to true . You can read why this happens in Tomayac’s blog Why Browser Download Stylesheet with Non-Matching Media Queries.

    Targeting media types

    Media types describe the general category of a given device. Although websites are commonly designed with screens in mind, you may want to create styles that target special devices such as printers or audio-based screen readers. For example, this CSS targets printers:

    You can also target multiple devices. For instance, this @media rule uses two media queries to target both screen and print devices:

    See media type for a list of all media types. Because they describe devices in only very broad terms, just a few are available; to target more specific attributes, use media features instead.

    Targeting media features

    Media features describe the specific characteristics of a given user agent, output device, or environment. For instance, you can apply specific styles to widescreen monitors, computers that use mice, or to devices that are being used in low-light conditions. This example applies styles when the user’s primary input mechanism (such as a mouse) can hover over elements:

    Many media features are range features, which means they can be prefixed with «min-» or «max-» to express «minimum condition» or «maximum condition» constraints. For example, this CSS will apply styles only if your browser’s viewport width is equal to or narrower than 1250px:

    If you create a media feature query without specifying a value, the nested styles will be used as long as the feature’s value is not zero (or none , in Level 4). For example, this CSS will apply to any device with a color screen:

    If a feature doesn’t apply to the device on which the browser is running, expressions involving that media feature are always false.

    For more Media feature examples, please see the reference page for each specific feature.

    Creating complex media queries

    Sometimes you may want to create a media query that depends on multiple conditions. This is where the logical operators come in: not , and , and only . Furthermore, you can combine multiple media queries into a comma-separated list; this allows you to apply the same styles in different situations.

    In the previous example, we’ve already seen the and operator used to group a media type with a media feature. The and operator can also combine multiple media features into a single media query. The not operator, meanwhile, negates a media query, basically reversing its normal meaning. The only operator prevents older browsers from applying the styles.

    Note: In most cases, the all media type is used by default when no other type is specified. However, if you use the not or only operators, you must explicitly specify a media type.

    Combining multiple types or features

    The and keyword combines a media feature with a media type or other media features. This example combines two media features to restrict styles to landscape-oriented devices with a width of at least 30 ems:

    @media (min-width: 30em) and (orientation: landscape)  /* … */ > 

    To limit the styles to devices with a screen, you can chain the media features to the screen media type:

    @media screen and (min-width: 30em) and (orientation: landscape)  /* … */ > 

    Testing for multiple queries

    You can use a comma-separated list to apply styles when the user’s device matches any one of various media types, features, or states. For instance, the following rule will apply its styles if the user’s device has either a minimum height of 680px or is a screen device in portrait mode:

    @media (min-height: 680px), screen and (orientation: portrait)  /* … */ > 

    Taking the above example, if the user had a printer with a page height of 800px, the media statement would return true because the first query would apply. Likewise, if the user were on a smartphone in portrait mode with a viewport height of 480px, the second query would apply and the media statement would still return true.

    Inverting a query’s meaning

    The not keyword inverts the meaning of an entire media query. It will only negate the specific media query it is applied to. (Thus, it will not apply to every media query in a comma-separated list of media queries.) The not keyword can’t be used to negate an individual feature query, only an entire media query. The not is evaluated last in the following query:

    @media not all and (monochrome)  /* … */ > 

    This means that the above query is evaluated like this:

    @media not (all and (monochrome))  /* … */ > 

    It wouldn’t be evaluated like this:

    @media (not all) and (monochrome)  /* … */ > 

    As another example, the following media query:

    @media not screen and (color), print and (color)  /* … */ > 

    This means that the above query is evaluated like this:

    @media (not (screen and (color))), print and (color)  /* … */ > 

    Improving compatibility with older browsers

    The only keyword prevents older browsers that do not support media queries with media features from applying the given styles. It has no effect on modern browsers.

    @media only screen and (color)  /* … */ > 

    Syntax improvements in Level 4

    The Media Queries Level 4 specification includes some syntax improvements to make media queries using features that have a «range» type, for example width or height, less verbose. Level 4 adds a range context for writing such queries. For example, using the max- functionality for width we might write the following:

    Note: The Media Queries Level 4 specification has reasonable support in modern browsers, but some media features are not well supported. See the @media browser compatibility table for more details.

    In Media Queries Level 4 this can be written as:

    Using min- and max- we might test for a width between two values like so:

    @media (min-width: 30em) and (max-width: 50em)  /* … */ > 

    This would convert to the Level 4 syntax as:

    Media Queries Level 4 also adds ways to combine media queries using full boolean algebra with and, not, and or.

    Negating a feature with not

    Using not() around a media feature negates that feature in the query. For example, not(hover) would match if the device had no hover capability:

    Testing for multiple features with or

    You can use or to test for a match among more than one feature, resolving to true if any of the features are true. For example, the following query tests for devices that have a monochrome display or hover capability:

    See also

    Found a content problem with this page?

    This page was last modified on Jun 23, 2023 by MDN contributors.

    Your blueprint for a better internet.

    Источник

Оцените статью