Background image not showing up in span tag

前端 未结 5 610
礼貌的吻别
礼貌的吻别 2021-02-06 21:36

Im having trouble with a span tag showing a background image in the latest FF on windows 7. It seems to work and show everything fine in earlier FF, Chrome, Safari and IE but ha

5条回答
  •  执笔经年
    2021-02-06 22:39

    display:inline-block; is not supported by IE7. You can fix it by adding:

    .design  {
        padding-left:25px;
        background:url(_includes/images/agenda-design.gif) no-repeat top left;
        display: inline-block;
        height: 17px;
        width: 50px;
        zoom: 1;
        *display:inline;
    }
    

提交回复
热议问题