You have the following markup. You need to rotate the div programmatically by 45 degrees. Which line of code should you use? A. document.getElementById("yellow").style.rotate(45); B. document.getElementById("yellow").style.transform = "rotate(45deg)"; C. document.getElementById("yellow").style.rotate3d("45deg"); D. document.getElementById("yellow").style.rotateX(45);

You have the following markup. You need to change the markup programmatically to display as follows: Which line of code should you use? A. document.getElementById("blue").style.display = "none" B. $("#blue").css("visibility", "collapse"); C. document.getElementById("blue").style.visibility = "hidden" D. $("#blue").css("display", "hidden"); E. document/getElementById ("blue").style.visibility…

NOTE: This question-is a part of series of questions that presents the same scenario. Each question-in the series contains unique solution that might meet the started goals. Some questions sets might have more than one correct solution, while others might…

NOTE: This question-is a part of series of questions that presents the same scenario. Each question-in the series contains unique solution that might meet the started goals. Some questions sets might have more than one correct solution, while others might…

NOTE: This question-is a part of series of questions that presents the same scenario. Each question-in the series contains unique solution that might meet the started goals. Some questions sets might have more than one correct solution, while others might…