IMG Tag Remove Border

后端 未结 4 1775
不知归路
不知归路 2021-01-02 14:28

http://www.flirtwithme.co/main.php#upgrade

On this page there is a blue box image that has a grey border around it. I\'ve been trying to remove the border without lu

4条回答
  •  孤城傲影
    2021-01-02 14:46

    You have set a background image on an tag. This is very bad practice.

    My suggestion is to change your markup to the following: (Note the instead of the tag)

    • Personalize your Profile using Custom Themes

    And then apply these styles:

    #iconPersonalizeProfile {
        background: url("http://www.staticimages.co/seemeagain/upgrade-sprite.png") -35px -3px;
        display:block;
        width: 25px;
        height: 25px;
        float: left;
    }
    

    That should solve your problem.

提交回复
热议问题