![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Is it a debateable point or 'whatever suits' as to whether test is presented using <p> or <br> tags? |
#3
| |||
| |||
|
|
Is it a debateable point or 'whatever suits' as to whether test is presented using <p> or <br> tags? |
#4
| |||
| |||
|
|
Jim Scott wrote: Is it a debateable point or 'whatever suits' as to whether test is presented using <p> or <br> tags? Neither - it's very clear. p>Marks the boundaries of a paragraph. <br> is an inline element that marks a line break, where it occurs _within_ some piece of text. That's really all there is to it - it's pretty clearly stated, if only you follow the HTML spec through in detail. br><br> is always wrong. You've broken the line once, how do you break it a second time? If you want a debate, then it's less clear-cut when you should use <p and <div>. Obviously <p> is used for paragraphs and <div> should be used for "chunks fo text that aren't a grammatical paragraph", but this is a viable grammar question about similar HTML constructs when <p> vs. br> is really comparing chalk and cheese. Not quite. |
#5
| |||
| |||
|
|
On my site, which is almost all pictures with text, using <br> avoids a space appearing between the text and the picture or is that because I use </p>? |
#6
| |||
| |||
|
|
On my site, which is almost all pictures with text, using <br> avoids a space appearing between the text and the picture or is that because I use </p>? |
#7
| |||
| |||
|
|
On my site, which is almost all pictures with text, using <br> avoids a space appearing between the text and the picture or is that because I use </p>? What's a "space" ? Sounds like a presentation issue, in which case don't worry about it in the HTML, leave it to the CSS. If you <img> is part of the same para as the text, then use <br between them. If your test is a separate paragraph beneath the image (or above, or alongside it) then use <p>...</p> and put the <img> elsewhere. And if you have got a image with some subtitle or description use a |
#8
| |||
| |||
|
|
br><br> is always wrong. You've broken the line once, how do you break it a second time? |
#9
| |||
| |||
|
|
br><br> is always wrong. You've broken the line once, how do you break it a second time? I don't see why this is wrong. |
|
there are plenty of cases that would have a double BR making your code more readable. |
#10
| |||
| |||
|
|
Obviously <p> is used for paragraphs and <div> should be used for "chunks fo text that aren't a grammatical paragraph" |
![]() |
| Thread Tools | |
| Display Modes | |
| |