Here is the code snippet I am working with:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head></head>
<body>
<iframe src="http://jl.evermight.net" style="overflow:scroll; display:block; position:fixed; top:10px; bottom:10px; right:10px; left:10px;"></iframe>
</body>
</html>
I am trying to figure out why the iframe does not fill the entire browser window, leaving a 10px space on all sides. Surprisingly, when I replaced the iframe tag with a p tag while keeping the same style rule, it worked as expected with the p tag.
It seems like the iframe is disregarding my right and bottom CSS rules. How can I make sure that the iframe acknowledges and applies these positioning rules correctly?