Border Height on CSS

前端 未结 12 1047
既然无缘
既然无缘 2020-12-12 21:55

I have a table TD and on the right of it I want to add a 1 pixel border, so I\'ve done this:

table td {
    border-right:1px solid #000;
}

12条回答
  •  无人及你
    2020-12-12 22:24

    This will add a centered border to the left of the cell that is 80% the height of the cell. You can reference the full border-image documentation here.

    table td {
        border-image: linear-gradient(transparent 10%, blue 10% 90%, transparent 90%) 0 0 0 1 / 3px;
    }
    

提交回复
热议问题