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

Submitted by: Muhammad
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;
}
}
Submitted by: Muhammad

Read Online Website Developer Job Interview Questions And Answers