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

CSS @media rules

WBOY
WBOYforward
2023-09-18 15:49:021157browse

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>

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

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete