[Vuejs]-Customize space for vertical table header and table data

0👍

The approach is combine width and nowrap like that:

 .field {
    text-align: start;
    font-weight: 400;
    width: 1%;
   white-space: nowrap;
 }

enter image description here

Happy coding.

Leave a comment