Question 2
Consider the following HTML document.
<!DOCTYPE html><html><head> <style> span { background-color: yellow; color: red; } #id { border: 2px solid purple; color:blue ; display: inline-block; } .class { background-color: aqua; color: red; display: block; width:20%; } </style></head><body> <span class="class" id="id">SPAN</span> <span class="class" >SPAN</span> <span>SPAN</span></body></html>How will the browser render above HTML file?