Question 5
Consider the following HTML document:
<!DOCTYPE html><html lang="en"><head> <style> #container { border-style: dashed; background-color: red; } .content { border-style: solid; border-color: green; background-color: orange; } div { width: 250px; border: 3px dotted black; border-color: yellow; } </style></head><body> <div id="container" class="content" style="background-color: yellow;"> <h2>Welcome to Web Dev</h2> </div></body></html>How will the browser render the above HTML document?