Data Browser - Viewing Site  Sector 23 Code Bank Logged in as:  Guest  




           


overflow-x does not work in Chrome
overflow-x does not work in Chrome if it is nested within a fieldset or legend, and you are using a percentage width.
It works in IE but not Chrome because Chrome assigns some unexpected default CSS values to fieldset and legend.

To fix, apply these css properties globally or to your fieldset/legend.

fieldset
{
min-width: 0;
text-overflow: ellipsis;
overflow: hidden;
}
legend
{
min-width: 0;
max-width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}

Created By: amos 4/21/2017 10:10:47 AM
Updated: 4/21/2017 10:11:04 AM