Background image does not show in tag

后端 未结 3 1148
悲&欢浪女
悲&欢浪女 2021-01-27 11:02

I use bootstrap 3. I try to use \"icon link\" by using tag as shown below:

HTML:


CSS:
.link         


        
3条回答
  •  花落未央
    2021-01-27 11:31

    Because your is empty.

    You need to give it a size :

    .link {
        background-image: url(img/icon.png);
        height:100px;
        width:100px;
        display:block;
    }
    

提交回复
热议问题