I inherited a style sheet that changes the style of the Table tag; TABLE {width:100%; border-collapse: collapse;}
This is adversely affecting a new page I’m laying out.
How can I override the style back to a default, as if this style was never declared in the CSS file?
I can use a class selector but I don’t know what the style should look like. Table.TableFmt { }
It is the width:100% that is causing me problems. If I take it out my new page displays correctly but this breaks all the other pages on the web site.
This is adversely affecting a new page I’m laying out.
How can I override the style back to a default, as if this style was never declared in the CSS file?
I can use a class selector but I don’t know what the style should look like. Table.TableFmt { }
It is the width:100% that is causing me problems. If I take it out my new page displays correctly but this breaks all the other pages on the web site.