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; }
Comments
Post a Comment