Given the code below, what part of the CSS statement is highlighted in blue?
In the case of a partial selector, specify the type of selector.
.classname {
background-color: #FFEFD5;
background-image: url(bg.png);
background-attachment: fixed;
}
#my-elements-id {
border: 2px solid #FFEFD5;
}
@media screen and (max-width: 1200px){
/*Notes about the code*/
}
@media screen and (max-width: 1200px){
.widget h2 {
font-size: 200%;
}
}
@media print{
img.responsive {
display: none;
}
}
a:hover {
/*apply to all links on hover*/
border-bottom: 2px dotted #0000FF;
}