Question 9
Consider the following HTML and CSS code:
<html> <head> <style> div { width: 0px; margin: 0px; } .container { width: 200px; padding: 15px; border: 5px solid black; } #box { margin: 10px; } </style> </head> <body> <div class="container" id="box">Hello World</div> </body></html>What is the total width (approximately ) of the div with class="container" and id="box", including content, padding, and border but excluding margin?
200 px
230 px
240 px
250 px