鍍金池/ 問答/HTML5  PHP  HTML/ table 的 border 是否可以這樣控制.....

table 的 border 是否可以這樣控制.....

clipboard.png

比如說 payment 跟 order price之間能否也一條灰色
但這個(gè)灰線不要是全滿的
就大概80%然後置中
這可以做到嗎

更新
每一格都要這條線
都只要80%

回答
編輯回答
九年囚

可以用::before或::after.

table td:nth-child(n+2)::before{
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background: #ccc;
}
2018年9月14日 06:12