Answers

Question and Answer:

  Home  Website Developer

⟩ Explain me what Are Media Queries In CSS3 And Why Do You Use Them?

Media queries are one of the latest features of CSS3 used to define responsive styles for devices of different shapes and sizes.

They are the powerful CSS tool which makes it easy to create responsive design for tablets, desktop, mobiles devices. They can help adjusting the Height, Width, Viewport, Orientation and Resolution.

@media screen and (min-width: 480px) {

body {

background-color: #ffffff;

}

}

 137 views

More Questions for you: