What is the difference between <p> and <div>?
Can they be used interchangeably? What are the applications?
|
What is the difference between <p> and <div>? Can they be used interchangeably? What are the applications? |
|||||||||
|
|
They have semantic difference - a The semantics make all the difference. HTML is a markup language which means that it is designed to "mark up" content in a way that is meaningful to the consumer of the markup. Most developers believe that the semantics of the document are the default styles and rendering that browsers apply to these elements but that is not the case. The elements that you choose to mark up your content should describe the content. Don't mark up your document based on how it should look - mark it up based on what it is. If you need a generic container Note: It is important to understand that both |
|||||||||||||||
|
|
Anything that can go in a Tae a look at the HTML DTD.
|
|||
|
|
|
All good answers, but there's one difference I haven't seen mentioned yet, and that's how browsers render them by default. The major web browsers will render a |
|||||||||||
|
|
The only difference between the two elements is semantics. Both elements, by default, have the CSS rule display: block (hence block-level) applied to them; nothing more (except somewhat extra margin in some instances). However, as aforementioned, they both different greatly in terms of semantics. The The |
|||||||
|
|
DIV is a generic block level container that can contain any other block or inline elements, including other DIV elements, whereas P is to wrap paragraphs (text). |
|||
|
|
|
It might be better to see the standard designed by W3.org. Here is the address: http://www.w3.org/ A "DIV" tag can wrap "P" tag whereas, a "P" tag can not wrap "DIV" tag-so far I know this difference. There may be more other differences. |
|||
|
|
|
Think of Whereas |
|||
|
|
|
<p> represents a paragraph and <div> represents a 'division', I suppose the main difference is that divs are semantically 'meaningless', where as a <p> is supposed to represent something relating to the text itself. You wouldn't want to have nested <p>s for example, since that wouldn't make much semantic sense (except in the sense of quotations) Whereas people use nested <div>s for page layout. According to Wikipedia
|
|||
|
|
|
'p' is semantically used for text, paragraphs usually. 'div' is used for a block or area in a webpage. For example it could be used to make the area of a header. The could probably be used interchangebly, but you shouldn't. |
|||
|
|
|
A |
|||
|
|
|
I dont know my answer will help or not.The previous code was
So I have to changed it to
was the easy fix.And the CSS for the above code is
So div tag can contain other elements. P should not be forced to do that. |
|||||||
|