I have a table. Its The width is set to be 100px. In Firefox only, text that exceeds 100p
The easier way to do this would be to add this to the Html and this to the CSS Working Example:
have overflow: auto
.
div {
overflow:auto;
}
td {
border: 1px solid rgb(0,0,0);
min-width: 100px;
max-width: 100px;
}
div {
overflow:auto;
}
td {
border: 1px solid rgb(0,0,0);
min-width: 100px;
max-width: 100px;
}