CSS: Style external links

前端 未结 8 1797
甜味超标
甜味超标 2021-01-30 16:55

I want to style all external links in my website (Wordpress). I\'m trying with:

.post p a[href^=\"http://\"]:after

But Wordpress put the entire

8条回答
  •  一生所求
    2021-01-30 17:49

    This is how you can style external links with a favicon image:

    a[href*="http"] {
        background: url('favicon.png') no-repeat 100% 0;
        background-size: 16px 16px;
        padding-right: 19px;
    }
    

    We set the path to the image we want to insert, specify no-repeat so we only get one copy inserted, and then specify the position as 100% of the way over to the right of the text content, and 0 pixels from the top.

提交回复
热议问题