我正在使用 Twitter 引导程序。一切顺利,但<p>some text with the font-size of 50px</p>
跳出 parent <div>
。一旦我将 bootstrap.min.css 作为样式表删除,一切正常。
似乎 Twitter Bootstrap 在段落上应用了一些属性(高度、垂直填充),因为我自己的 css 文件中没有 p 标签的其他属性。
如何解决所有<p>
问题<p>Paragraph text could be any size and not jump out of the parent div</p>
?
好的,这是一个更新:
<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>
请不要忘记连接 bootstrap.min.css 进行测试。