How to adjust the width of a hr tag

后端 未结 7 622
情话喂你
情话喂你 2021-01-19 02:53

I\'ve got a problem with setting the width of


tag.. I mean I want my
tag to be displayed half of the full width like this ima
7条回答
  •  清酒与你
    2021-01-19 03:08

    Set the style attributes of the hr element in css

    hr {
        width:50%;
        margin:0 auto;
    }
    

提交回复
热议问题