[Vuejs]-VueJS โ€“ How to have a vertical line just before the boxes for naming purpose using HTML/CSS

1๐Ÿ‘

โœ…

You could apply a border-left style to the .rows container:

.rows {
  border-left: solid 1px red;
}

demo

Leave a comment