Whether the border of table can be controlled in this way.

clipboard.png

for example, can there be a gray between payment and order price
, but if this gray line is not all
, then it is about 80% and then put it in the middle
. Can this be done

?

Update
every line
is only 80%

.
Feb.28,2021

you can use:: before or:: after.

table td:nth-child(n+2)::before{
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background: -sharpccc;
}
Menu