Is there a way to ignore all written styles and start from scratch for a new tag. For example, if I wrote a style
table {
large amount of styles..
}
and then I want to start a new table without any styles with something like this
<table style="no style">
I can write another class for the new table and apply the class, but the problem is that there are so many styles to override. Is there such an attribute?
source
share