Question 25
Consider the <span> element and the styling given to it in <style> tag using element selector in the HTML file below.
<!DOCTYPE html><html lang="en"><head> <title>Span</title> <style> span{ color: red; border:1px solid blue; } </style></head><body> <span id="this_span">Hello Students! MAD-I welcomes you! </span></body></html>What will be the final style applied to <span> tag if an additional style is added via the ID selector given below?
#this_span{ width: 1200px; border: 2px solid pink; }