我遇到的问题是我的链接被放置在图标上,因此图标在后台,而不是我想要的旁边。你会怎么写这个,以便图标在链接的左边?
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;
}
答案 0 :(得分:1)
我已经更新了你的代码,它似乎工作得很好..
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 */
}