DEV Community

Cover image for How to change the CSS styles when the window or device width reaches a certain width?
MELVIN GEORGE
MELVIN GEORGE

Posted on • Originally published at melvingeorge.me

How to change the CSS styles when the window or device width reaches a certain width?

Originally posted here!

To change the CSS styles when the window or the device width reaches a certain minimum width, you can use the @media media query syntax followed by () symbols (opening and closing brackets). Inside the brackets, you can write the keyword min-width followed by the : symbol (colon) and then by writing the width with its unit.

The CSS styles you write inside this CSS block will only be triggered if the device or the window width is matching with the minimum width you provided.

TL;DR

<html>
  <body>
    <p>Hello World!</p>
  </body>

  <!-- CSS styles -->
  <!-- 
    Using the `@media` and the `min-width` syntax
    we can define the CSS styles only to be triggered
    when the window or the device width reaches `1000px`.
  -->
  <style>
    body {
      background-color: black;
    }

    p {
      color: white;
    }

    @media (min-width: 1000px) {
      body {
        background-color: white;
      }

      p {
        color: black;
      }
    }
  </style>
</html>
Enter fullscreen mode Exit fullscreen mode

For example, let's say we have a webpage where the background color of the body is black and the paragraph text is by default.

It may look like this,

<html>
  <body>
    <p>Hello World!</p>
  </body>

  <!-- CSS styles -->
  <style>
    body {
      background-color: black;
    }

    p {
      color: white;
    }
  </style>
</html>
Enter fullscreen mode Exit fullscreen mode

The output will look like this,

webpage with black background color and text in white color

We aim to change this webpage's body background color to white and paragraph text color to black only when the window or the device width is above 1000px.

To do that we can use the @media media query syntax followed by the () brackets symbol. Inside the brackets, we can write the (min-width: 1000px) code to define that we need to trigger the CSS styles only when the window width reaches 1000px or the minimum width of the window is at the 1000px mark.

It can be done like this,

<html>
  <body>
    <p>Hello World!</p>
  </body>

  <!-- CSS styles -->
  <!-- 
    Using the `@media` and the `min-width` syntax
    we can define the CSS styles only to be triggered
    when the window or the device width reaches `1000px`.
  -->
  <style>
    body {
      background-color: black;
    }

    p {
      color: white;
    }

    @media (min-width: 1000px) {
      body {
        background-color: white;
      }

      p {
        color: black;
      }
    }
  </style>
</html>
Enter fullscreen mode Exit fullscreen mode

The visual representation of CSS styles getting applied is shown below,

webpage background color becomes white and text color becomes white when widow width reaches 1000px

This is how we can change the CSS styles when the window width or the device width reaches a minimum width.

See the above code live in codesandbox.

That's all πŸ˜ƒ!

Feel free to share if you found this useful πŸ˜ƒ.


Top comments (0)