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:
this question from here maybe solve your problem nickb answer: "Try wrapping it in a try to put your working demo have overflow: auto
.
<td class="first">
<div>Don ovonMrLongNameIsMe!!!</div>
</td>
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;
}
<table>
<tr>
<td class="first">
<div>Don ovonMrLongNameIsMe!!!</div>
</td>
</tr>
</table>
<div>
. I'm pretty sure the overflow attribute is not defined for a <td>
element, at least in HTML4 it's not."overflow:auto
to the wrapper
hope this can help youpre, div {
width:100%;
overflow: auto !important;
}