Given the following HTML, what is total height of the <p>
element? I would think that it would be 1em, but it does not appear to be so. The letters that drop below the baseline seem to sit on some kind of margin that extends below the font height.
<html>
<head>
<style>
p {
margin: 0;
padding: 0;
font-size: 1em;
font-family: serif;
border: 1px solid black;
}
</style>
</head>
<body>
<p>Lorem ipsum.</p>
</body>
</html>