I have different anchor tags with href=#ids and I need to hide them using a general css rule for all of them,
Content xxxxxxxxx Table 1&
If you want to hide all a tags which have href set, you can do this:
a[href] { display: none; }