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

后端 未结 6 2400
刺人心
刺人心 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条回答
  •  萌比男神i
    2021-02-14 06:41

    Try using attribute selectors:

    a[href='#tab1']{ display: none }
    

    Or even simply

    [href='#tab1']{ display: none }
    

    http://www.w3.org/TR/CSS2/selector.html

提交回复
热议问题