Background image does not show in tag

后端 未结 3 1193
悲&欢浪女
悲&欢浪女 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:35

    You have to make the tag enought big to show the image Example: CSS:

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

提交回复
热议问题