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

后端 未结 6 2232
刺人心
刺人心 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:43

    If you want to hide all a tags which have href set, you can do this:

    a[href] { display: none; }
    

提交回复
热议问题