Imnotapotato
Imnotapotato

Reputation: 5808

Is there a way to get default css settings or reset it?

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.

Upvotes: 0

Views: 138

Answers (1)

Jack1987
Jack1987

Reputation: 727

In the web, there are a lot of files that have all the configuration and all the css properties set to default, just use one and see the results.

You can see an overview here: http://cssreset.com/

Upvotes: 3

Related Questions