Results 1 to 3 of 3
  1. #1

    Default Break and paragraph tag

    As it is faster, and one less tag that can be left unclosed, I only use <br> and have completely abandoned the use of <p>.
    Is there any use for which the <p> gives a tangible advantage over <br>?
    Any downsides at all to using <BR> exclusively?

  2. #2

    Default

    Paragraph Tag:

    The HTML <p> tag inserts a paragraph in the document. Paragraphs are block-level elements that constitute a basic structure of a document and are usually rendered by browsers with top and bottom margins. Paragraphs can't contain block-level elements, including other paragraphs.
    Paragraphs are defined with the <p> tag.

    Example:
    <p>This is a paragraph</p>

    <p>This is another paragraph</p>

    Break Tag:

    The Break tag puts a a line break into the html text displayed on your page. This action breaks the text and begins a new line.
    The <br> tag inserts a single line break.

    The <br> tag is an empty tag which means that it has no end tag.


    Example:

    A four word line<br/>A four word line<br/>A four word line.

  3. #3

    Default

    try to use always <br/> to break, its advanced

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159