Removing the
border styling on IE

后端 未结 4 1346
遇见更好的自我
遇见更好的自我 2020-12-28 17:50

Why is it the simple things that IE manages to mess up the most? Anyway I want to replace a normal hr line with a single image a bit like the - § - symbol (on its side). T

4条回答
  •  轮回少年
    2020-12-28 18:02

    Well, you could just insert the image directly and not use an


    tag. However, I'm fairly certain you can get rid of the offending border by just changing it to be the color of your background. I mean, it's not actually gone, but at least it's hiding:

    hr{
       border: #XXXXXX;
    }
    

提交回复
热议问题