hr with an image through css

后端 未结 2 523
闹比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:15

    hr {
        display:block;
        border:0px;
        height:10px;
        background-image:url('img.gif');
    }
    

提交回复
热议问题