I'm using Twitter Bootstrap. Everything goes fine, but <p>some text with the font-size of 50px</p> jumps out of the parent <div>. Once I remove bootstrap.min.css as a stylesheet, everything is OK.
Seems like Twitter Bootstrap applies some properties (heights, vertical paddings) on paragraphs because there are no additional properties for p tag in my own css file.
How to fix all <p> so that <p>Paragraph text could be any size and not jump out of the parent div</p>?
OK, here is an update:
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
<style>
p {
border:1px solid red;
font-size:55px;
}
</style>
</head>
<body>
<p>The text of more than 18 px is out of the red border if bootstrap.min.css connected </p>
</body>
Please do not forget to connect bootstrap.min.css to test it.
pis amargin-bottomof9px, and inherits afont-sizeof13pxandline-heightof18pxfrombody. Perhaps post some example code. – Ross Aug 1 '12 at 14:26