html - Insert DIV before TABLE -


i want insert div containing text before table element.

i tried text gets inserted between thead , first data row , table's first column gets disturbed because of inserted text.

what proper solution this? can't add class names table element have apply style existing legacy content.

here jsfiddle.

css:

table:before {     content:"this text should use whole width of table!"; } 

this might you:

sorry miss in previous post:

css

table:before {     content:"this text should use whole width of table!"; }  table {     display:block; } 

updated:demo


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -