如何使用结束选择器附加链接旁边的图标?

时间:2014-09-09 01:36:25

标签: html css

我遇到的问题是我的链接被放置在图标上,因此图标在后台,而不是我想要的旁边。你会怎么写这个,以便图标在链接的左边?

HTML:

<p><a href="http://www.scholastic.com/thehungergames/media/hungergames-chapter1.pdf" title="Book  Sample">Hunger Games, Chapter 1</a></p>

CSS:

a[href $=".pdf"] {
    background: url('image.png') no-repeat center left; 
    padding-left 25px;
}

1 个答案:

答案 0 :(得分:1)

我已经更新了你的代码,它似乎工作得很好..

SEE HERE

a[href$=".pdf"] {
  background: url('http://cdn.cutestpaw.com/wp-content/uploads/2011/11/cute-cat-l.jpg') no-repeat center left; 
  padding-left: 25px; /* you forgot the colon here */
  background-size: auto 100%; /* make the background size 100% of the height of the anchor link */
}