Is there a vr (vertical rule) in html?

后端 未结 28 2259
花落未央
花落未央 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:29

    Today is possible with CSS3

    hr {
      background-color:black;
      color:black;
      -webkit-transform:rotate(90deg);
      position:absolute;
      width:100px;
      height:2px;
      left:100px;
    }
    

提交回复
热议问题