Slanted diagonal line in html or css?

后端 未结 6 2149
终归单人心
终归单人心 2020-11-29 10:23

I want to make a Table like this \"CSS

is it possible to add a slanted diagonal bord

6条回答
  •  天涯浪人
    2020-11-29 11:06

    Another approach would be to use SVG as it can scale easily to the size of your container.

    Example :

    div {
      position: relative;
      display:inline-block;
      width: 100px;
      height: 50px;
      border: 1px solid #000;
    }
    .l{width:200px;}
    .xl{width:300px;}
    svg {
      position: absolute;
      width: 100%;
      height: 100%;
    }

提交回复
热议问题