I would like to style paragraphs and table contents in the same way.
p, table {
color:#555;
font-family:Arial;
}
But when a table is inserted inside a paragraph
<p>Some text
<table>
<tr><td>Text inside table</td></tr>
<tr><td>Text inside table</td></tr>
</table>
Some other text
</p>
the text following the table (Some other text
) doesn't have the desired style.
Does table break paragraph style?
`. Check [http://stackoverflow.com/questions/7459652/table-tag-not-nesting-inside-p-tags-in-dom](http://stackoverflow.com/questions/7459652/table-tag-not-nesting-inside-p-tags-in-dom)