Twitter Bootstrap を使用しています。すべてうまくいきますが<p>some text with the font-size of 50px</p>
、親から飛び出し<div>
ます。スタイルシートとして bootstrap.min.css を削除すると、すべて問題ありません。
自分の css ファイルに p タグの追加プロパティがないため、Twitter Bootstrap が段落にいくつかのプロパティ (高さ、垂直方向のパディング) を適用しているようです。
<p>
そのようにすべてを修正する方法は<p>Paragraph text could be any size and not jump out of the parent div</p>
?
OK、ここにアップデートがあります:
<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 を接続することを忘れないでください。