[Vuejs]-Why can't i adjust the width of <td>?

1👍

You need to use table-layout: fixed when you want the individual table cells to respect pre-defined CSS widths:

.mytable {
  table-layout: fixed;
}
👤Terry

Leave a comment