How to hide an anchor tag by href #id using css

后端 未结 6 2235
刺人心
刺人心 2021-02-14 06:08

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&         


        
6条回答
  •  灰色年华
    2021-02-14 06:39

    Why not just create a CSS class for your anchors and hide them using that class?

    foo
    

    And in your CSS:

    a.hiddenTab {visibility:hidden; display:none;}
    

    All the anchors you'd want to hide would just use "class='hiddenTab'"

提交回复
热议问题