hr with an image through css

后端 未结 2 522
闹比i
闹比i 2020-12-16 14:16

I find this a pain. I am trying to get CSS to use an image when the < hr /> tag is used. I am currently using:

hr
{
  display:block;
  bor         


        
相关标签:
2条回答
  • 2020-12-16 15:08

    Update border:none; to border:0;

    0 讨论(0)
  • 2020-12-16 15:15
    hr {
        display:block;
        border:0px;
        height:10px;
        background-image:url('img.gif');
    }
    
    0 讨论(0)
提交回复
热议问题