MCQs > IT & Programming > CSS > Consider the following HTML/CSS3 code: HTML: CSS: #nav a { background-color: #FF0; } #nav a:hover { background-color: #AD310B; -webkit-transition: background-color 1000ms linear; -moz-transition: background-color 1000ms linear; -o-transition: background-color 1000ms linear; -ms-transition: background-color 1000ms linear; transition: background-color 1000ms linear; } What will happen when the link is hovered?

CSS MCQs

Consider the following HTML/CSS3 code:

HTML:

<div id="nav"><a href="#">Test</a></div>

CSS:

#nav a {

     background-color: #FF0;

}

#nav a:hover {

     background-color: #AD310B;

     -webkit-transition: background-color 1000ms linear;

     -moz-transition: background-color 1000ms linear;

     -o-transition: background-color 1000ms linear;

     -ms-transition: background-color 1000ms linear;

     transition: background-color 1000ms linear;

}

What will happen when the link is hovered?

Answer

Correct Answer: Yes, but only headings.

Explanation:

Note: This Question is unanswered, help us to find answer for this one

CSS Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

CSS Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it