Question 2
How will the browser render the following HTML document?
<!DOCTYPE html><html><head> <title>Document</title> <style> div{ border: 1px solid black; color:pink; } span{ border: 1px solid pink; display: block; } div,span{ width:8%; margin: 2px; } </style></head> <body> <div>Div 1</div> <div>Div 2</div> <span>Span 1</span> <span>Span 2</span> </body></html>