Reputation: 39
Basically, I want to have a <p>
tag inserted after every </table>
tag. My problem is that I have the ability to add javascript to an external thirdparty software but they dont allow me to edit the actual templates. I want every table to be on a new line and css styling the table tag to be display:block;
does not work.
If anyone knows how to make sure every table is its own line using either javascript or css I would be very appreciative. If you think that my method might work and can whip up a quick script.
Upvotes: 1
Views: 281
Reputation: 5897
oh, just use this css instead:
table{
clear:left;
float:left;
}
Upvotes: 1