lets say we have the code below:
<html>
<head>
</head>
<body>
<p id="paragraph">
<h1>HELLO</h1>
dfsdfdsfdsfsdfsd<br />
sadadsadsad<br />asdsadsadsadsadsadsad<br />
asdsadsadsadsadsad
</p>
<script type="text/javascript">
alert(document.getElementById('paragraph').offsetHeight);</script>
</body></html>
If in a p tag exists:
<h1></h1> or <h2></h2>...
it does not return the actual height of the p tag
jquery ($("#paragraph").height()) returns 0, so does
document.getElementById('paragraph').offsetHeight
document.getElementById('paragraph').style.height
How to fix this? Is this a bug or not?
I have test it on ubuntu with firefox, chrome, opera (latest versions) and does not work.
