I’ve realised that I’m going to need to use a css class on all tables within my application.
<table id="tblSearch" class="eFoo-text"
The problem is that I’ve got lots of pages, which contain lots of user controls.
Luckly they all inherit from a single master page. Is there some way to say “use this class on all tables” somewhere in the master page??
In your CSS, you can use an element selector.
This is apply a padding to all tables without having to add a class or id to the markup.