このコードを実行しようとすると、各段落の後に追加の段落が挿入されていることがわかります..どうすればこれらの段落をクリアできますか、またはなぜそれが表示されるのですか?
<html>
<style>
/* The margin set from - top, right, bottom, left*/
p {
margin:.5cm 1cm 1cm 1cm;
text-decoration:underline;
border-style:solid;
border-color:red;
}
</style>
<body>
<p>This is the First paragraph,This is the First paragraph,This is the First paragraph,This is the First paragraph,This is the First paragraph,This is the First paragraph<p>
<p>This is the Second paragraph<p>
<p>This is the Third paragraph<p>
</body>
</html>