当我尝试运行这段代码时,我看到每个段落后面都插入了其他段落。如何清除这些段落或为什么我会看到它?
<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>
答案 0 :(得分:3)
您需要正确关闭段落
<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>
几乎所有的html标签都以&lt;&gt; 开头,并以&lt;结尾/&gt;