Contents  >

Introduction to Media Queries

Learning Goals

At the end of this Tutorial you will be able to:

You can view finished versions of the three sample web pages you will update with media queries in this Tutorial by clicking the links below. The finished samples will each open in a new tab of your web browser.

You created these three sample web pages and their linked stylesheets in the previous Working with Sections Tutorial.

Sample image page-10.html
Sample image page-11.html
Sample image page-12.html

Contents

About media queries

The format of a media query

The condition format a media query

Media queries: web browser resets

Editing your three sample stylesheets

Uploading your CSS files to GitHub

About media queries

In the CSS stylesheets you have created so far, the style rules they contain apply to all web pages these CSS files are linked to.

This will be true for every type of device used – mobiles, tablets, laptops or desktops.

Consider the example below of an h1 main heading. If you simply entered this style rule to a CSS file, all main headings are displayed in the colour blue on all types of user devices.

h1 {
    color: blue;
}

So-called media queries enable web designers to create conditional style rules in CSS.

That is: style rules that apply only when certain conditions are met.

Suppose, for example:

How can this be done?

The solution is to use two media queries.

In simple terms, you would:

Intoduction to Media Queries

Note that all media queries have both a start point and an end point.

It is not enough to ‘open’ them. You must also ‘close’ them.

If you fail to close a media query, all the style rules that follow it in the remainder of the CSS file – which could be many hundreds of lines long – will be controlled by the unclosed media query.

The format of a media query

In CSS, a media is written in the following general format:

Intoduction to Media Queries

Note that there are now two pairs of curly braces:

The condition format a media query

Web designers most commonly use media queries that respond to the width of the web browser viewport (screen).

In simple terms, viewport widths are either ‘big’ (wide) or ‘small’ (narrow).

You can now write two media queries in their full, valid format:

/* Desktops */
@media (min-width: 768px) {
     h1 { color: blue }
}

/* Mobiles */
@media (max-width: 767px) { 
    h1 { color: red }
}

In this example, the media query for desktop screens is entered first in the CSS file, followed by the media query for mobile screens. But the order in which media queries appear in a stylesheet does not matter.

Intoduction to Media Queries

Below are the same two media queries, but with the style rule for the h1 selectors written on a single line.

Intoduction to Media Queries

Again, note the two pairs of opening and closing curly braces.

Media queries: web browser resets

When using the media queries to control the spacing around and within HTML elements, it is best to update the web browser resets in your stylesheet file as follows:

/*  ============= WEB BROWSER RESETS ============ */
* { margin: 0; padding: 0; border: 0; box-sizing: border-box }
html { height: 100% }
body { min-height: 100% }  
img { width: 100%; height: auto; display: block }

This has to do with setting percentage values for horizontal and vertical widths:

To avoid this possible conflict of ‘how high is height?’, web designers add 100% height values to browser resets at the top of CSS files.

Editing your three sample stylesheets

Follow these steps to update the stylesheet files for your recent sample web pages (page-10.html, page-11.html and page-12.html) so that they display responsively on different viewport widths.

You created these sample web pages in a previous Tutorial.

  1. In VS Code, open the style-10.css, style-11.css and style-12.css stylesheet files.
  2. At the top of each stylesheet file, replace the current web browser resets by copying and pasting the following:
    /*  ============= WEB BROWSER RESETS ============ */
    * { margin: 0; padding: 0; border: 0; box-sizing: border-box }
    html { height: 100% }
    body { min-height: 100% }  
    img { width: 100%; height: auto; display: block }
    
  3. For each stylesheet file, replace the current .container-block style rules with the following:
    /* Desktops */
    @media (min-width:768px) { .container-block { padding: 4% 18% } }
    
    /* Mobiles */
    @media (max-width:767px) { .container-block { padding: 12% 8% } }
    
  4. In all three stylesheets, after the style declaration block for the p paragraph, add these two new media queries that adjust the inter-line spacing for text paragraphs depending on the viewport width:
    /* Desktops */
    @media (min-width:768px) { .container-block p { line-height: 1.8 } }
    
    /* Mobiles */
    @media (max-width:767px) { .container-block p { line-height: 1.6 } }
    
  5. Save the style-10.css, style-11.css and style-12.css stylesheets.
  6. Use your web browser’s viewport resizing feature to check that the horizontal and vertical spacing of the container blocks in the three web pages changes at the 768px viewport breakpoint.

Click page-10.html, page-11.html and page-12.html to view finished samples of these web pages in a new tab of your web browser.

Uploading your CSS files to GitHub

After you have finished working with your stylesheets, you are ready to upload them to your account on GitHub.

  1. Open a new tab in your web browser and go to GitHub.com. If you are not already signed in to your GitHub account, sign in now. github-signin
  2. On your GitHub home page, click the name of the repository (‘repo’) that holds your web pages. Its name will look as follows, where username is your chosen username on GitHub.   username.github.io github-signin
  3. On your GitHub account, display your websites folder. This is where your sample web pages, stylesheets and images are contained. github-signin
  4. To your websites folder, upload the following three stylesheet files:   style-10.css
    style-11.css
    style-12.css

Your linked web pages will be published at web addresses similar to the following:

https://username.github.io/websites/page-10.html
https://username.github.io/websites/page-11.html
https://username.github.io/websites/page-12.html

It may take a few minutes for your uploaded files to appear on GitHub.



Return to Contents.