Is there a vr (vertical rule) in html?

后端 未结 28 2216
花落未央
花落未央 2020-12-02 11:37

I know there is a hr (horizontal rule) in html, but I don\'t believe there is a vr (vertical rule). Am I wrong and if not, why isn\'t there a vertical rule?

28条回答
  •  旧巷少年郎
    2020-12-02 12:25

    You can use css for simulate a vertical line, and use the class on the div

    .vhLine {
      border-left: thick solid #000000;
    }
    

提交回复
热议问题