Question 8
Consider the following HTML document.
<!DOCTYPE html><html lang="en"><head> <title>Span</title> <style> span{ color: blue; Background-color: lime; } </style></head><body> <span id="my_span">MAD-I is a Diploma level course.</span> <span>SE is a Degree level course.</span></body></html>What will be the rendered output if an additional style is added via the ID selector given below?
#my_span{ width: 1200px; Background-color: lightpink; }