I have always used either <br /> or a <div/> tag when something more advanced is necessary.
Is use of the <p/> tag still encouraged?
|
|
Modern HTML semantics are:
Don't use |
||||
|
|
|
A
If you need to use
|
|||||||||||||
|
|
Using From XHTML HTML Compatibility Guidelines
|
|||
|
|
|
A It is more appropriate to use the |
||||
|
|
|
Interestingly, Counting paragraph tags states that a random sample of 833,866 HTML documents found that 50.1% of the documents sampled contain only <p>...</p>, 4.41% contain only ...<p>..., and a mere 0.21% contain only ...<p/>.... |
|||
|
|
|
From the HTML 4.01 Specification :
While they are syntactically correct, empty P elements serve no real purpose and should be avoided. |
|||
|
|
Paragraph is a paragraph, break is a break.A the first one sets all paragraph settings/styles, the second one barely breaks a line of text. Yes |
||||
|
|
|
The HTML DTD does not prohibit you from using an empty |
|||
|
|
|
Use it for what? All tags have their own little purpose in life, but no tag should be used for everything. Find out what you are trying to make, and then decide on what tag fits that idea best: If it is a paragraph of text, or at least a few lines, then wrap it in If you need a line break between two lines of text, then use If you need to wrap many other elements in one element, then use the |
|||
|
|
|
For any practical purpose you dont need to add the |
||||
|