当我尝试运行这段代码时,我看到在每个段落之后插入了额外的段落。我怎样才能清除这些段落或为什么我看到它?
<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>