How to specify media dependencies for CSS stylesheets

PHPz
Release: 2023-08-31 12:21:02
forward
1002 people have browsed it

如何指定 CSS 样式表的媒体依赖项

The following are two ways to specify media dependencies for a stylesheet

  • Specify the target media from the stylesheet using @media or @import at -rules.
  • Specify the target media in the document language.

Example

Let’s look at an example of a @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 How to specify media dependencies for CSS stylesheets. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!