Custom
with image/character in the center

后端 未结 4 1918
一生所求
一生所求 2020-12-30 07:43

I\'d like to recreate this horizontal rule:

\"enter

I have the double lines, b

4条回答
  •  轮回少年
    2020-12-30 08:15

    Since you have some css already might aswell give it a background image and a height:

    hr {
        ... your css ...
        background:url(path to your image) no-repeat center;
        height:15px;
    }
    

提交回复
热议问题