Now I am faced very weird html problem.
When I make html code as below the div has some height (maybe 20px or 18px ...)
<html>
<body>
<div>
<img>
</div>
</body>
</html>
But when i put this div in iframe as below, it has no height (0px)
<html>
<body>
<iframe>
#document
<html>
<body>
<div>
<img>
</div>
</body>
</html>
</iframe>
</body>
</html>
It seems difference is only whether putting div into iframe or not.
But the second code's div has no height. I don't know why div has no height.
Please let me know what is problem and how to fix it.
Thanks