0

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

<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>

http://jsfiddle.net/xvF85/

4

1 回答 1

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标签都以<>开头,以< / >结尾

于 2013-11-03T00:00:26.547 回答