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 に答える