CSS- target text links with bottom border on hover, but image links with no border

前端 未结 9 822
离开以前
离开以前 2021-02-08 11:54

I\'d like to be able to target text links in CSS with border-bottom on hover, but have all links that are images not have a border on hover. So:



        
9条回答
  •  别跟我提以往
    2021-02-08 12:48

    Try this trick. It works.

    a { text-decoration:none; border-bottom:2px solid; }
    
    a img { border:none; vertical-align:top; }
    

    Another way - PHP:

    $text = preg_replace('#(.*?)#is', "\\3", $text); 
    

提交回复
热议问题