Is there any way to disregard whatever styles written, and start from scratch for a new tag. For example, if I have written a style
table {
large amount of styles..
}
and then I want to start a new table with no styles whatsoever with something like this
<table style="no style">
I can write a different class for new table and apply the class, but the problem is that there are so many styles to override. Is there such an attribute?
Unfortunately no, there is no way to “reset” an element. This is one reason it is recommended to not give elements over-arching styles. It can become an issue later when you want to change it. You have two options.