css中如何给a标签设置图片背景

.comment_reply a:first-child{
     
    display: block;
    /* 设置行内元素为块状元素才能设置宽高 */
    width: 16px;
    height: 16px;
    /* 设置宽高才能显示背景 */
    background-image: url(..//img/zan.png);
    /* 相对位置是相对于css文件的位置而不是html */
    background-repeat: repeat;
    background-position: 50% 50%;
}

你可能感兴趣的:(css)