Home > Web Front-end > CSS Tutorial > CSS @media rules

CSS @media rules

WBOY
Release: 2023-09-18 15:49:02
forward
1212 people have browsed it

CSS @media 规则

@media Rules specifies the target media types for a set of rules (separated by commas).

Example

Let’s look at an example @media rule -

<style>
   <!--
      @media print {
         body { font-size: 10pt }
      }

      @media screen {
         body { font-size: 12pt }
      }

      @media screen, print {
         body { line-height: 1.2 }
      }

   -->
</style>
Copy after login

The above is the detailed content of CSS @media rules. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template