Why <blockquote> inside <p> generate an error? And everything at the same time functions in the browser quite normally, quoting is in place, the whole further document is displayed correctly. But Brackets shows the error:

enter image description here

  • the question will be closed ... and the minuses will be put - MaximLensky
  • Why? After all, I asked about the case. The text is clickable, there is a screen - Ivan Ivanovich
  • Read carefully, here are serious about this: ru.stackoverflow.com/help/asking - MaximLensky
  • I hope I helped you understand what is wrong with your question - MaximLensky

1 answer 1

The tags <p> ( paragraph ) and <blockquote> ( block quotes ) are block elements. But, <blockquote> , besides the decoration, carries also a semantic load, defining a block for a quote. Based on this, a block of quotations can be divided into paragraphs , and a paragraph cannot consist of blocks of quotations .

If it becomes necessary to place a quote in a paragraph , then the <q> tag is used, which is a lowercase default.