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&
Try using a[href*="#"] {display: none;} This selectors identifies a # in the href attribute of an anchor and if found it applies the style
a[href*="#"] {display: none;}
href
You can use it in another way such as header a[href*="#"] {display: none;} So you don't mess all the anchors on the site!
header a[href*="#"] {display: none;}