tbody td {
border: 1px solid black;
width: 100vw;
min-width: 4rem;
max-width: 4rem;
}
1 Like
Because vw is going off of the width of the viewport and not the parent elements width. When using 100% you are referencing the parent element’s available width.
Thank you. What bugged me was why the table for 100% was uneven. After thinking about your answer, I came up with this. min-width and max-width of less than 33% will evenly space a 3 column table.
tbody td {
border: 1px solid black;
width: 100vw;
min-width: calc(100% / 3);
max-width: calc(100% / 3);
}
1 Like
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.