Bootstrap paragraph style
Description
Bootstrap's global default font-size is 14px, with
a line-height of 1.428. This is applied to the <body>
and all paragraphs. In addition, <p>
(paragraphs)
receive a bottom margin of half their computed
line-height (10px by default).
Example
<!DOCTYPE HTML>
<html>
<head>
<link href="http://java2s.com/style/bootstrap.min.css" rel="stylesheet">
</head><!-- ww w . jav a 2s . c om-->
<body style='margin:20px;'>
<p>This is a paragraph.</p>
</body>
</html>