In CSS3 you are working on a responsive web design approach, if you are required to perform various operations on media quires then which of the following statements about @media features in the @media rule are correct code example
Example: media query in html style
span { background-image: url(particular_ad.png); }
@media (max-width: 300px) {
span { background-image: url(particular_ad_small.png); }
}