Skip to main content

Command Palette

Search for a command to run...

CSS Media Queries

Published
1 min readView as Markdown
CSS Media Queries
J

I am talented and motivated individual who has completed a Master of Computer Applications (MCA) degree and is now pursuing a career in full-stack web development. With a passion for technology and a desire to innovate, I am constantly seeking new challenges and opportunities to enhance my skills and stay at the forefront in Tech field.

What is a Media Query?

Using CSS media queries, we can make our web more responsive. When we open a website on different devices, the layout should be different. Using media queries, we can solve these issues and make the web responsive.

@media screen and (min-width: 600px) {
  .element {
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
}

Use these properties whenever the minimum width of a web page is 600 pixels.

value ranges

@media (min-width: 600px) and (max-width: 1100px) {
  .container {
    background-color: purple;
  }
}

The container class should apply these properties whenever our web page is between 600px and 1100px wide.