When examining a div labeled with .mlm-clearfix
, I noticed that Firebug was displaying this class name and its URL twice in the right panel. The style declarations given for the Easy Clear Method in relation to this class are as follows:
.mlm-clearfix:before,
.mlm-clearfix:after {
content: '\0020';
display: block;
overflow: hidden;
visibility: hidden;
width: 0;
height: 0;
}
After removing one selector and adjusting it to
.mlm-clearfix:after {
content: '\0020';
display: block;
overflow: hidden;
visibility: hidden;
width: 0;
height: 0;
}
The issue vanished. However, the same duplicate display is not occurring with other combined class selectors like
.search-table td input,
.search-table td select {
width: 200px;
}
The CSS file is not linked twice. What could be causing this double display? Any insights would be greatly appreciated.