I am working on a website that already has general properties on the <table>
tag element (in the whole website).
So if I add a table in a specific page after building it on a blank html page, it gets the properties of the global <table>
.
How do I reset it's properties of the table element just for this specific page?
When adding the code ansered in this post:
Reset/remove CSS styles for element only
to my table class... for example:
.ext{
*here*
}
<table class="ext">
......
</table>
It has too many properties that makes it worse to run over the older properties.
I'm sure there is a better way to do these kind of stuff. Please help.