klren0312 / daliy_knowledge

知识积累,正确使用方式是watch
22 stars 4 forks source link

css绘制虚线 #757

Open klren0312 opened 9 months ago

klren0312 commented 9 months ago
.dash-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, transparent 0%, transparent 50%, #ccc 50%, #ccc 100%);
  background-size: 10px 1px;
  background-repeat: repeat-y;
}